Skip to content

This Repository contains the codebase for SemiKolan Blogs. Tech Stack used here is Laravel (PHP)

Notifications You must be signed in to change notification settings

semikolan-co/blog.semikolan.co

Repository files navigation

Cover Image

Maintenance Open Source Love contributions welcome GitHub issues GitHub forks GitHub stars

Hactoberfest DWoC

Semikolan Blogs

This Repository contains the source code of Semikolan Blogs at blog.semikolan.co Some links for Semikolan blog: Website: Semikolan Blog Login Page: Login Register Page: Register

You can also join the Semikolan Discord Server to have a discussion about the project or ask out about any other queries.

Table of Contents

Installation

Please check the official laravel installation guide for server requirements before you start. Official Documentation

Fork this repository and clone it to your local machine.

git clone https://github.com/<your_username>/blog.semikolan.co.git

Switch to the repo folder

cd blog.semikolan.co

Install all the dependencies using composer

composer install

Copy the example env file and make the required configuration changes in the .env file

cp .env.example .env

Generate a new application key

php artisan key:generate

Run the database migrations (Set the database connection in .env before migrating)

php artisan migrate

Start the local development server

php -S localhost:8000

You can now access the server at http://localhost:8000

Database seeding

Populate the database with seed data with relationships which includes users, blogs, categories, subcategories, reports and subscribers. This can help you to quickly start testing and start using it with ready content.

Open the DatabaseSeeder and set the property values as per your requirement

database/seeds/DatabaseSeeder.php

Run the database seeder and you're done

php artisan db:seed

Note : It's recommended to have a clean database before seeding. You can refresh your migrations at any point to clean the database by running the following command

php artisan migrate:refresh

Codebase Structure

  • app/Http/Models - Contains all the Eloquent models
  • app/Http/Controllers - Contains all Controllers
  • app/Http/Middleware - Contains the middleware
  • config - Contains all the application configuration files
  • database/migrations - Contains all the database migrations
  • database/seeds - Contains the database seeder
  • routes - Contains all the routes defined in web.php file
  • tests - Contains all the application tests (Currently not in use)
  • vendor - Contains all the third party libraries
  • public - Contains all the public assets
  • resources/views - Contains all the views
  • resources/views/layouts - Contains the layouts

Environment variables

  • .env - Environment variables can be set in this file

Note : You can quickly set the database information and other variables in this file and have the application fully working.

File Structure

blog.semikolon.co
β”œβ”€β”€ app\
β”‚   β”‚
β”‚   β”œβ”€β”€ Actions\
β”‚   β”‚   β”œβ”€β”€ Fortify\
β”‚   β”‚   β”‚   β”œβ”€β”€ CreateNewUser.php
β”‚   β”‚   β”‚   β”œβ”€β”€ PasswordValidationRules.php
β”‚   β”‚   β”‚   β”œβ”€β”€ ResetUserPassword.php
β”‚   β”‚   β”‚   β”œβ”€β”€ UpdateUserPassword.php
β”‚   β”‚   β”‚   └── UpdateUserProfileInformation.php
β”‚   β”‚   β”‚
β”‚   β”‚   └── Jetstream\
β”‚   β”‚       β”œβ”€β”€ AddTeamMember.php
β”‚   β”‚       β”œβ”€β”€ CreateTeam.php
β”‚   β”‚       β”œβ”€β”€ DeleteTeam.php
β”‚   β”‚       β”œβ”€β”€ DeleteUser.php
β”‚   β”‚       β”œβ”€β”€ InviteTeamMember.php
β”‚   β”‚       β”œβ”€β”€ RemoveTeamMember.php
β”‚   β”‚       └── UpdateTeamName.php
β”‚   β”‚
β”‚   β”œβ”€β”€ Console\
β”‚   β”‚   └── Kernel.php
β”‚   β”‚
β”‚   β”œβ”€β”€ Exceptions\
β”‚   β”‚   └── Handler.php
β”‚   β”‚
β”‚   β”œβ”€β”€ Http\
β”‚   β”‚   β”œβ”€β”€ Controllers\
β”‚   β”‚   β”‚   β”œβ”€β”€ APIController.php
β”‚   β”‚   β”‚   β”œβ”€β”€ AdminController.php
β”‚   β”‚   β”‚   β”œβ”€β”€ Controller.php
β”‚   β”‚   β”‚   β”œβ”€β”€ GitHubController.php
β”‚   β”‚   β”‚   β”œβ”€β”€ GoogleController.php
β”‚   β”‚   β”‚   β”œβ”€β”€ HomeController.php
β”‚   β”‚   β”‚   β”œβ”€β”€ LinkedinController.php
β”‚   β”‚   β”‚   └── UserController.php
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€ Middleware\
β”‚   β”‚   β”‚   β”œβ”€β”€ Authenticate.php
β”‚   β”‚   β”‚   β”œβ”€β”€ EncryptCookies.php
β”‚   β”‚   β”‚   β”œβ”€β”€ IsUserAdmin.php
β”‚   β”‚   β”‚   β”œβ”€β”€ PreventRequestsDuringMaintenance.php
β”‚   β”‚   β”‚   β”œβ”€β”€ RedirectIfAuthenticated.php
β”‚   β”‚   β”‚   β”œβ”€β”€ TrimStrings.php
β”‚   β”‚   β”‚   β”œβ”€β”€ TrustHosts.php
β”‚   β”‚   β”‚   β”œβ”€β”€ TrustProxies.php
β”‚   β”‚   β”‚   └── VerifyCsrfToken.php
β”‚   β”‚   β”‚
β”‚   β”‚   └── Kernel.php
β”‚   β”‚
β”‚   β”œβ”€β”€ Models\
β”‚   β”‚   β”œβ”€β”€ Giveaway.php
β”‚   β”‚   β”œβ”€β”€ Membership.php
β”‚   β”‚   β”œβ”€β”€ Message.php
β”‚   β”‚   β”œβ”€β”€ Team.php
β”‚   β”‚   β”œβ”€β”€ TeamInvitation.php
β”‚   β”‚   β”œβ”€β”€ User.php
β”‚   β”‚   β”œβ”€β”€ blog.php
β”‚   β”‚   β”œβ”€β”€ blog_category.php
β”‚   β”‚   β”œβ”€β”€ blog_subcategory.php
β”‚   β”‚   β”œβ”€β”€ report.php
β”‚   β”‚   └── subscriber.php
β”‚   β”‚
β”‚   β”œβ”€β”€ Policies\
β”‚   β”‚   └── TeamPolicy.php
β”‚   β”‚
β”‚   β”œβ”€β”€ Providers\
β”‚   β”‚   β”œβ”€β”€ AppServiceProvider.php
β”‚   β”‚   β”œβ”€β”€ AuthServiceProvider.php
β”‚   β”‚   β”œβ”€β”€ BroadcastServiceProvider.php
β”‚   β”‚   β”œβ”€β”€ EventServiceProvider.php
β”‚   β”‚   β”œβ”€β”€ FortifyServiceProvider.php
β”‚   β”‚   β”œβ”€β”€ JetstreamServiceProvider.php
β”‚   β”‚   └── RouteServiceProvider.php
β”‚   β”‚
β”‚   └── View\
β”‚       └── Components\
β”‚           β”œβ”€β”€ AppLayout.php
β”‚           └── GuestLayout.php
β”‚
β”œβ”€β”€ assets\
β”‚   β”‚
β”‚   β”œβ”€β”€ css\
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€ maps\
β”‚   β”‚   β”‚   └── style.css.map
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€ custom-styles.css
β”‚   β”‚   └── style.css
β”‚   β”‚
β”‚   β”œβ”€β”€ fonts\
β”‚   β”‚   β”œβ”€β”€ Assistant\
β”‚   β”‚   β”‚   └── ..Font files
β”‚   β”‚   β”‚
β”‚   β”‚   └── Rubik\
β”‚   β”‚
β”‚   β”œβ”€β”€ images\
β”‚   β”‚   β”œβ”€β”€ auth\
β”‚   β”‚   β”œβ”€β”€ carousel\
β”‚   β”‚   β”œβ”€β”€ dashboard\
β”‚   β”‚   β”œβ”€β”€ faces\
β”‚   β”‚   β”œβ”€β”€ faces-clipart\
β”‚   β”‚   β”œβ”€β”€ file-icons\
β”‚   β”‚   β”‚   β”œβ”€β”€ 128\
β”‚   β”‚   β”‚   β”œβ”€β”€ 256\
β”‚   β”‚   β”‚   β”œβ”€β”€ 512\
β”‚   β”‚   β”‚   └── 64\
β”‚   β”‚   β”œβ”€β”€ lightbox\
β”‚   β”‚   β”œβ”€β”€ samples\
β”‚   β”‚   β”‚   β”œβ”€β”€ 1280x768\
β”‚   β”‚   β”‚   └── 300x300\
β”‚   β”‚   β”œβ”€β”€ screenshots\
β”‚   β”‚   └── sprites\
β”‚   β”‚
β”‚   β”œβ”€β”€ js\
β”‚   β”‚   β”œβ”€β”€ ace.js
β”‚   β”‚   β”œβ”€β”€ alerts.js
β”‚   β”‚   β”œβ”€β”€ avgrund.js
β”‚   β”‚   β”œβ”€β”€ bootstrap-table.js
β”‚   β”‚   β”œβ”€β”€ bt-maxLength.js
β”‚   β”‚   β”œβ”€β”€ c3.js
β”‚   β”‚   β”œβ”€β”€ calendar.js
β”‚   β”‚   β”œβ”€β”€ chart.js
β”‚   β”‚   β”œβ”€β”€ chartist.js
β”‚   β”‚   β”œβ”€β”€ circle-progress.js
β”‚   β”‚   β”œβ”€β”€ clipboard.js
β”‚   β”‚   β”œβ”€β”€ codeEditor.js
β”‚   β”‚   β”œβ”€β”€ codemirror.js
β”‚   β”‚   β”œβ”€β”€ context-menu.js
β”‚   β”‚   β”œβ”€β”€ cropper.js
β”‚   β”‚   β”œβ”€β”€ dashboard.js
β”‚   β”‚   β”œβ”€β”€ data-table.js
β”‚   β”‚   β”œβ”€β”€ db.js
β”‚   β”‚   β”œβ”€β”€ desktop-notification.js
β”‚   β”‚   β”œβ”€β”€ dragula.js
β”‚   β”‚   β”œβ”€β”€ dropify.js
β”‚   β”‚   β”œβ”€β”€ dropzone.js
β”‚   β”‚   β”œβ”€β”€ editorDemo.js
β”‚   β”‚   β”œβ”€β”€ file-upload.js
β”‚   β”‚   β”œβ”€β”€ flot-chart.js
β”‚   β”‚   β”œβ”€β”€ form-addons.js
β”‚   β”‚   β”œβ”€β”€ form-repeater.js
β”‚   β”‚   β”œβ”€β”€ form-validation.js
β”‚   β”‚   β”œβ”€β”€ formpickers.js
β”‚   β”‚   β”œβ”€β”€ google-charts.js
β”‚   β”‚   β”œβ”€β”€ google-maps.js
β”‚   β”‚   β”œβ”€β”€ hoverable-collapse.js
β”‚   β”‚   β”œβ”€β”€ iCheck.js
β”‚   β”‚   β”œβ”€β”€ inputmask.js
β”‚   β”‚   β”œβ”€β”€ ion-range-slider.js
β”‚   β”‚   β”œβ”€β”€ jq.tablesort.js
β”‚   β”‚   β”œβ”€β”€ jquery-file-upload.js
β”‚   β”‚   β”œβ”€β”€ js-grid.js
β”‚   β”‚   β”œβ”€β”€ just-gage.js
β”‚   β”‚   β”œβ”€β”€ light-gallery.js
β”‚   β”‚   β”œβ”€β”€ listify.js
β”‚   β”‚   β”œβ”€β”€ mapael.js
β”‚   β”‚   β”œβ”€β”€ mapael_example_1.js
β”‚   β”‚   β”œβ”€β”€ mapael_example_2.js
β”‚   β”‚   β”œβ”€β”€ maps.js
β”‚   β”‚   β”œβ”€β”€ misc.js
β”‚   β”‚   β”œβ”€β”€ modal-demo.js
β”‚   β”‚   β”œβ”€β”€ morris.js
β”‚   β”‚   β”œβ”€β”€ no-ui-slider.js
β”‚   β”‚   β”œβ”€β”€ off-canvas.js
β”‚   β”‚   β”œβ”€β”€ owl-carousel.js
β”‚   β”‚   β”œβ”€β”€ paginate.js
β”‚   β”‚   β”œβ”€β”€ popover.js
β”‚   β”‚   β”œβ”€β”€ profile-demo.js
β”‚   β”‚   β”œβ”€β”€ progress-bar.js
β”‚   β”‚   β”œβ”€β”€ rickshaw.js
β”‚   β”‚   β”œβ”€β”€ select2.js
β”‚   β”‚   β”œβ”€β”€ settings.js
β”‚   β”‚   β”œβ”€β”€ sparkline.js
β”‚   β”‚   β”œβ”€β”€ tablesorter.js
β”‚   β”‚   β”œβ”€β”€ tabs.js
β”‚   β”‚   β”œβ”€β”€ tight-grid.js
β”‚   β”‚   β”œβ”€β”€ toastDemo.js
β”‚   β”‚   β”œβ”€β”€ todolist.js
β”‚   β”‚   β”œβ”€β”€ tooltips.js
β”‚   β”‚   β”œβ”€β”€ typeahead.js
β”‚   β”‚   β”œβ”€β”€ widgets.js
β”‚   β”‚   β”œβ”€β”€ wizard.js
β”‚   β”‚   └── x-editable.js
β”‚   β”‚
β”‚   β”œβ”€β”€ scss\
β”‚   β”‚   β”œβ”€β”€ components\
β”‚   β”‚   β”‚   β”œβ”€β”€ landing-screens\
β”‚   β”‚   β”‚   β”‚   └── _auth.scss
β”‚   β”‚   β”‚   β”‚
β”‚   β”‚   β”‚   β”œβ”€β”€ loaders\
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _bar-loader.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _circle-loader.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _colored-balls.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _dot-opacity-loader.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _flip-square-loader.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _glowing-ball.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _jumping-dots-loader.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _loaders.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _moving-square-loader.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _pixel-loader.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _square-box.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _square-path-loader.scss
β”‚   β”‚   β”‚   β”‚   └── _variables.scss
β”‚   β”‚   β”‚   β”‚
β”‚   β”‚   β”‚   β”œβ”€β”€ mixins\
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _animation.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _background.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _badges.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _blockqoute.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _breadcrumbs.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _buttons.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _cards.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _misc.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _no-ui-slider.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _pagination.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _popovers.scss
β”‚   β”‚   β”‚   β”‚   └── _tooltips.scss
β”‚   β”‚   β”‚   β”‚
β”‚   β”‚   β”‚   β”œβ”€β”€ plugin-overrides\
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _ace.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _avgrund.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _c3.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _chartist.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _codemirror.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _colcade.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _colorpicker.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _context-menu.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _data-tables.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _datepicker.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _dropify.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _dropzone.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _flot-chart.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _full-calendar.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _google-charts.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _icheck.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _jquery-file-upload.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _js-grid.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _justguage.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _jvectormap.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _light-gallery.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _listify.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _morris.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _no-ui-slider.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _owl-carousel.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _progressbar-js.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _pws-tabs.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _quill.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _rating.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _select2.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _summernote.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _sweet-alert.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _switchery.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _tags.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _tinymce.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _toast.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _typeahead.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _wizard.scss
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ _wysieditor.scss
β”‚   β”‚   β”‚   β”‚   └── _x-editable.scss
β”‚   β”‚   β”‚   β”‚
β”‚   β”‚   β”‚   β”œβ”€β”€ _background.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _badges.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _buttons.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _cards.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _checkbox-radio.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _demo.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _dropdown.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _fonts.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _footer.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _forms.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _functions.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _icons.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _misc.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _preview.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _reset.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _tables.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _tabs.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _todo-list.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _typography.scss
β”‚   β”‚   β”‚   β”œβ”€β”€ _utilities.scss
β”‚   β”‚   β”‚   └── _widget-grid.scss
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€ vertical\
β”‚   β”‚   β”‚   └── _vertical-wrapper.scss
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€ _layouts.scss
β”‚   β”‚   β”œβ”€β”€ _navbar.scss
β”‚   β”‚   β”œβ”€β”€ _sidebar.scss
β”‚   β”‚   β”œβ”€β”€ _variables.scss
β”‚   β”‚   └── style.scss
β”‚   β”‚
β”‚   └── vendors\
β”‚       β”œβ”€β”€ chart.js\
β”‚       β”‚   └── Chart.min.js
β”‚       β”‚
β”‚       β”œβ”€β”€ codemirror\
β”‚       β”‚   β”œβ”€β”€ ambiance.css
β”‚       β”‚   β”œβ”€β”€ codemirror.css
β”‚       β”‚   β”œβ”€β”€ codemirror.js
β”‚       β”‚   β”œβ”€β”€ javascript.js
β”‚       β”‚   └── shell.js
β”‚       β”‚
β”‚       β”œβ”€β”€ css\
β”‚       β”‚   └── vendor.bundle.base.css
β”‚       β”‚
β”‚       β”œβ”€β”€ flag-icon-css\
β”‚       β”‚   β”œβ”€β”€ css\
β”‚       β”‚   β”‚   └── flag-icon.min.css
β”‚       β”‚   └── flags\
β”‚       β”‚       β”œβ”€β”€ 1x1\
β”‚       β”‚       └── 4x3\
β”‚       β”‚
β”‚       β”œβ”€β”€ js\
β”‚       β”‚   β”œβ”€β”€ bootstrap.min.js.map
β”‚       β”‚   └── vendor.bundle.base.js
β”‚       β”‚
β”‚       β”œβ”€β”€ jvectormap\
β”‚       β”‚   β”œβ”€β”€ jquery-jvectormap-world-mill-en.js
β”‚       β”‚   β”œβ”€β”€ jquery-jvectormap.css
β”‚       β”‚   └── jquery-jvectormap.min.js
β”‚       β”‚
β”‚       β”œβ”€β”€ mdi\
β”‚       β”‚   β”‚
β”‚       β”‚   β”œβ”€β”€ css\
β”‚       β”‚   β”‚   β”œβ”€β”€ materialdesignicons.min.css
β”‚       β”‚   β”‚   └── materialdesignicons.min.css.map
β”‚       β”‚   β”‚
β”‚       β”‚   └── fonts\
β”‚       β”‚       β”œβ”€β”€ materialdesignicons-webfont.eot
β”‚       β”‚       β”œβ”€β”€ materialdesignicons-webfont.ttf
β”‚       β”‚       β”œβ”€β”€ materialdesignicons-webfont.woff
β”‚       β”‚       └── materialdesignicons-webfont.woff2
β”‚       β”‚
β”‚       β”œβ”€β”€ owl-carousel-2\
β”‚       β”‚   β”œβ”€β”€ owl.carousel.min.css
β”‚       β”‚   β”œβ”€β”€ owl.carousel.min.js
β”‚       β”‚   β”œβ”€β”€ owl.theme.default.min.css
β”‚       β”‚   └── owl.video.play.png
β”‚       β”‚
β”‚       β”œβ”€β”€ progressbar.js\
β”‚       β”‚   └── progressbar.min.js
β”‚       β”‚
β”‚       β”œβ”€β”€ pwstabs\
β”‚       β”‚   β”œβ”€β”€ jquery.pwstabs.min.css
β”‚       β”‚   └── jquery.pwstabs.min.js
β”‚       β”‚
β”‚       β”œβ”€β”€ select2\
β”‚       β”‚   β”œβ”€β”€ select2.min.css
β”‚       β”‚   └── select2.min.js
β”‚       β”‚
β”‚       β”œβ”€β”€ select2-bootstrap-theme\
β”‚       β”‚   └── select2-bootstrap.min.css
β”‚       β”‚
β”‚       └── typeahead.js\
β”‚           └── typeahead.bundle.min.js
β”‚
β”œβ”€β”€ bootstrap\
β”‚   β”œβ”€β”€ cache\
β”‚   └── app.php
β”‚
β”œβ”€β”€ config\
β”‚   β”œβ”€β”€ app.php
β”‚   β”œβ”€β”€ auth.php
β”‚   β”œβ”€β”€ broadcasting.php
β”‚   β”œβ”€β”€ cache.php
β”‚   β”œβ”€β”€ cors.php
β”‚   β”œβ”€β”€ database.php
β”‚   β”œβ”€β”€ filesystems.php
β”‚   β”œβ”€β”€ fortify.php
β”‚   β”œβ”€β”€ hashing.php
β”‚   β”œβ”€β”€ jetstream.php
β”‚   β”œβ”€β”€ laravel-share.php
β”‚   β”œβ”€β”€ logging.php
β”‚   β”œβ”€β”€ mail.php
β”‚   β”œβ”€β”€ queue.php
β”‚   β”œβ”€β”€ sanctum.php
β”‚   β”œβ”€β”€ services.php
β”‚   β”œβ”€β”€ session.php
β”‚   └── view.php
β”‚
β”œβ”€β”€ database\
β”‚   β”œβ”€β”€ factories\
β”‚   β”‚   β”œβ”€β”€ TeamFactory.php
β”‚   β”‚   └── UserFactory.php
β”‚   β”‚
β”‚   β”œβ”€β”€ migrations\
β”‚   β”‚   β”œβ”€β”€ 2014_10_12_000000_create_users_table.php
β”‚   β”‚   β”œβ”€β”€ 2014_10_12_100000_create_password_resets_table.php
β”‚   β”‚   β”œβ”€β”€ 2014_10_12_200000_add_two_factor_columns_to_users_table.php
β”‚   β”‚   β”œβ”€β”€ 2019_08_19_000000_create_failed_jobs_table.php
β”‚   β”‚   β”œβ”€β”€ 2019_12_14_000001_create_personal_access_tokens_table.php
β”‚   β”‚   β”œβ”€β”€ 2020_05_21_100000_create_teams_table.php
β”‚   β”‚   β”œβ”€β”€ 2020_05_21_200000_create_team_user_table.php
β”‚   β”‚   β”œβ”€β”€ 2020_05_21_300000_create_team_invitations_table.php
β”‚   β”‚   β”œβ”€β”€ 2021_06_11_204447_create_sessions_table.php
β”‚   β”‚   β”œβ”€β”€ 2021_09_13_182818_create_blogs_table.php
β”‚   β”‚   β”œβ”€β”€ 2021_09_13_183456_create_blog_categories_table.php
β”‚   β”‚   β”œβ”€β”€ 2021_09_13_183508_create_blog_subcategories_table.php
β”‚   β”‚   β”œβ”€β”€ 2021_09_13_183554_create_reports_table.php
β”‚   β”‚   └── 2021_09_13_183614_create_subscriberss_table.php
β”‚   β”‚
β”‚   β”œβ”€β”€ seeders\
β”‚   β”‚   β”œβ”€β”€ DatabaseSeeder.php
β”‚   β”‚   └── UserSeeder.php
β”‚   └── .gitignore
β”‚
β”œβ”€β”€ public\
β”‚   β”œβ”€β”€ css\
β”‚   β”‚   β”œβ”€β”€ animated.css
β”‚   β”‚   β”œβ”€β”€ app.css
β”‚   β”‚   β”œβ”€β”€ fontawesome.css
β”‚   β”‚   β”œβ”€β”€ owl.css
β”‚   β”‚   β”œβ”€β”€ sidebar.css
β”‚   β”‚   └── templatemo-space-dynamic.css
β”‚   β”‚
β”‚   β”œβ”€β”€ images\
β”‚   β”œβ”€β”€ img\
β”‚   β”‚
β”‚   β”œβ”€β”€ js\
β”‚   β”‚   β”œβ”€β”€ animation.js
β”‚   β”‚   β”œβ”€β”€ app.js
β”‚   β”‚   β”œβ”€β”€ imagesloaded.js
β”‚   β”‚   β”œβ”€β”€ isotope.js
β”‚   β”‚   β”œβ”€β”€ owl-carousel.js
β”‚   β”‚   β”œβ”€β”€ share.js
β”‚   β”‚   β”œβ”€β”€ tabs.js
β”‚   β”‚   └── templatemo-custom.js
β”‚   β”‚
β”‚   β”œβ”€β”€ uploads\
β”‚   β”‚   └── ft_img\
β”‚   β”‚
β”‚   β”œβ”€β”€ vendor\
β”‚   β”‚   β”œβ”€β”€ bootstrap\
β”‚   β”‚   β”‚   β”œβ”€β”€ css\
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ bootstrap.min.css
β”‚   β”‚   β”‚   β”‚   └── bootstrap.min.css.map
β”‚   β”‚   β”‚   β”‚
β”‚   β”‚   β”‚   └── js\
β”‚   β”‚   β”‚       β”œβ”€β”€ bootstrap.bundle.min.js
β”‚   β”‚   β”‚       β”œβ”€β”€ bootstrap.bundle.min.js.map
β”‚   β”‚   β”‚       └── bootstrap.min.js
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€ jquery\
β”‚   β”‚   β”‚   β”œβ”€β”€ jquery.js
β”‚   β”‚   β”‚   β”œβ”€β”€ jquery.min.js
β”‚   β”‚   β”‚   β”œβ”€β”€ jquery.min.map
β”‚   β”‚   β”‚   β”œβ”€β”€ jquery.slim.js
β”‚   β”‚   β”‚   β”œβ”€β”€ jquery.slim.min.js
β”‚   β”‚   β”‚   └── jquery.slim.min.map
β”‚   β”‚   β”‚
β”‚   β”‚   └── prism\
β”‚   β”‚       β”œβ”€β”€ prism.css
β”‚   β”‚       └── prism.js
β”‚   β”‚
β”‚   β”œβ”€β”€ .htaccess
β”‚   β”œβ”€β”€ favicon.ico
β”‚   β”œβ”€β”€ index.php
β”‚   β”œβ”€β”€ mix-manifest.json
β”‚   β”œβ”€β”€ robots.txt
β”‚   └── web.config
β”‚
β”œβ”€β”€ resources\
β”‚   β”‚
β”‚   β”œβ”€β”€ css\
β”‚   β”‚   └── app.css
β”‚   β”‚
β”‚   β”œβ”€β”€ js\
β”‚   β”‚   β”œβ”€β”€ app.js
β”‚   β”‚   └── bootstrap.js
β”‚   β”‚
β”‚   β”œβ”€β”€ lang\
β”‚   β”‚   β”œβ”€β”€ en\
β”‚   β”‚   β”‚   β”œβ”€β”€ auth.php
β”‚   β”‚   β”‚   β”œβ”€β”€ pagination.php
β”‚   β”‚   β”‚   β”œβ”€β”€ passwords.php
β”‚   β”‚   β”‚   └── validation.php
β”‚   β”‚   β”‚
β”‚   β”‚   └── vendor\
β”‚   β”‚       └── laravel-share\
β”‚   β”‚           └── en\
β”‚   β”‚               └── laravel-share-fa5.php
β”‚   β”œβ”€β”€ markdown\
β”‚   β”‚   β”œβ”€β”€ policy.md
β”‚   β”‚   └── terms.md
β”‚   β”‚
β”‚   └── views\
β”‚       β”œβ”€β”€ api\
β”‚       β”‚   β”œβ”€β”€ api-token-manager.blade.php
β”‚       β”‚   └── index.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ auth\
β”‚       β”‚   β”œβ”€β”€ confirm-password.blade.php
β”‚       β”‚   β”œβ”€β”€ forgot-password.blade.php
β”‚       β”‚   β”œβ”€β”€ login.blade.php
β”‚       β”‚   β”œβ”€β”€ loginold.blade.php
β”‚       β”‚   β”œβ”€β”€ register.blade.php
β”‚       β”‚   β”œβ”€β”€ registerold.blade.php
β”‚       β”‚   β”œβ”€β”€ reset-password.blade.php
β”‚       β”‚   β”œβ”€β”€ two-factor-challenge.blade.php
β”‚       β”‚   └── verify-email.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ components\
β”‚       β”‚   β”œβ”€β”€ footer.blade.php
β”‚       β”‚   β”œβ”€β”€ header.blade.php
β”‚       β”‚   └── hero.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ errors\
β”‚       β”‚   └── 404.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ layouts\
β”‚       β”‚   β”œβ”€β”€ admin.blade.php
β”‚       β”‚   β”œβ”€β”€ adminold.blade.php
β”‚       β”‚   β”œβ”€β”€ app.blade.php
β”‚       β”‚   β”œβ”€β”€ appold.blade.php
β”‚       β”‚   β”œβ”€β”€ gtags.blade.php
β”‚       β”‚   β”œβ”€β”€ guest.blade.php
β”‚       β”‚   β”œβ”€β”€ metatags.blade.php
β”‚       β”‚   β”œβ”€β”€ scripts.blade.php
β”‚       β”‚   └── styles.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ mail\
β”‚       β”‚   β”œβ”€β”€ Subscribe.blade.php
β”‚       β”‚   └── contactmail.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ modals\
β”‚       β”‚   β”œβ”€β”€ bookmark.blade.php
β”‚       β”‚   β”œβ”€β”€ recentblogs.blade.php
β”‚       β”‚   β”œβ”€β”€ report.blade.php
β”‚       β”‚   β”œβ”€β”€ reportnew.blade.php
β”‚       β”‚   └── subscribe.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ pages\
β”‚       β”‚   β”œβ”€β”€ ablogs.blade.php
β”‚       β”‚   β”œβ”€β”€ blog.blade.php
β”‚       β”‚   β”œβ”€β”€ blogs.blade.php
β”‚       β”‚   β”œβ”€β”€ editblog.blade.php
β”‚       β”‚   β”œβ”€β”€ email.blade.php
β”‚       β”‚   β”œβ”€β”€ reports.blade.php
β”‚       β”‚   β”œβ”€β”€ subscriber.blade.php
β”‚       β”‚   β”œβ”€β”€ thecategory.blade.php
β”‚       β”‚   └── thesubcategory.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ partials\
β”‚       β”‚   β”œβ”€β”€ _sidebar.blade.php
β”‚       β”‚   └── _teachersidebar.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ profile\
β”‚       β”‚   β”œβ”€β”€ delete-user-form.blade.php
β”‚       β”‚   β”œβ”€β”€ logout-other-browser-sessions-form.blade.php
β”‚       β”‚   β”œβ”€β”€ show.blade.php
β”‚       β”‚   β”œβ”€β”€ two-factor-authentication-form.blade.php
β”‚       β”‚   β”œβ”€β”€ update-password-form.blade.php
β”‚       β”‚   └── update-profile-information-form.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ teams\
β”‚       β”‚   β”œβ”€β”€ create-team-form.blade.php
β”‚       β”‚   β”œβ”€β”€ create.blade.php
β”‚       β”‚   β”œβ”€β”€ delete-team-form.blade.php
β”‚       β”‚   β”œβ”€β”€ show.blade.php
β”‚       β”‚   β”œβ”€β”€ team-member-manager.blade.php
β”‚       β”‚   └── update-team-name-form.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ vendor\
β”‚       β”‚   └── jetstream\
β”‚       β”‚       β”œβ”€β”€ components\
β”‚       β”‚       β”‚   β”œβ”€β”€ action-message.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ action-section.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ application-logo.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ application-mark.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ authentication-card-logo.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ authentication-card.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ banner.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ button.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ checkbox.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ confirmation-modal.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ confirms-password.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ danger-button.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ dialog-modal.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ dropdown-link.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ dropdown.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ form-section.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ input-error.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ input.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ label.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ modal.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ nav-link.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ responsive-nav-link.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ secondary-button.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ section-border.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ section-title.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ switchable-team.blade.php
β”‚       β”‚       β”‚   β”œβ”€β”€ validation-errors.blade.php
β”‚       β”‚       β”‚   └── welcome.blade.php
β”‚       β”‚       β”‚
β”‚       β”‚       └── mail\
β”‚       β”‚           └── team-invitation.blade.php
β”‚       β”‚
β”‚       β”œβ”€β”€ dashboard.blade.php
β”‚       β”œβ”€β”€ flash.blade.php
β”‚       β”œβ”€β”€ home.blade.php
β”‚       β”œβ”€β”€ mail.blade.php
β”‚       β”œβ”€β”€ navigation-menu.blade.php
β”‚       β”œβ”€β”€ policy.blade.php
β”‚       β”œβ”€β”€ terms.blade.php
β”‚       β”œβ”€β”€ welcome.blade - Copy.php
β”‚       └── welcome.blade.php
β”‚
β”œβ”€β”€ routes\
β”‚   β”œβ”€β”€ api.php
β”‚   β”œβ”€β”€ channels.php
β”‚   β”œβ”€β”€ console.php
β”‚   └── web.php
β”‚
β”œβ”€β”€ storage\
β”‚   β”œβ”€β”€ app\
β”‚   β”‚   └── public\
β”‚   β”œβ”€β”€ ebooks\
β”‚   β”‚   └── 1626435657\
β”‚   β”œβ”€β”€ framework\
β”‚   β”‚   β”œβ”€β”€ cache\
β”‚   β”‚   β”‚   β”œβ”€β”€ data\
β”‚   β”‚   β”‚   β”‚   └── .gitignore
β”‚   β”‚   β”‚   β”‚
β”‚   β”‚   β”‚   └── .gitignore
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€ sessions\
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€ testing\
β”‚   β”‚   β”‚
β”‚   β”‚   └── views\
β”‚   β”‚
β”‚   └── logs\
β”‚
β”œβ”€β”€ tests\
β”‚   β”œβ”€β”€ Feature\
β”‚   β”‚   β”œβ”€β”€ ApiTokenPermissionsTest.php
β”‚   β”‚   β”œβ”€β”€ AuthenticationTest.php
β”‚   β”‚   β”œβ”€β”€ BrowserSessionsTest.php
β”‚   β”‚   β”œβ”€β”€ CreateApiTokenTest.php
β”‚   β”‚   β”œβ”€β”€ CreateTeamTest.php
β”‚   β”‚   β”œβ”€β”€ DeleteAccountTest.php
β”‚   β”‚   β”œβ”€β”€ DeleteApiTokenTest.php
β”‚   β”‚   β”œβ”€β”€ DeleteTeamTest.php
β”‚   β”‚   β”œβ”€β”€ EmailVerificationTest.php
β”‚   β”‚   β”œβ”€β”€ ExampleTest.php
β”‚   β”‚   β”œβ”€β”€ InviteTeamMemberTest.php
β”‚   β”‚   β”œβ”€β”€ LeaveTeamTest.php
β”‚   β”‚   β”œβ”€β”€ PasswordConfirmationTest.php
β”‚   β”‚   β”œβ”€β”€ PasswordResetTest.php
β”‚   β”‚   β”œβ”€β”€ ProfileInformationTest.php
β”‚   β”‚   β”œβ”€β”€ RegistrationTest.php
β”‚   β”‚   β”œβ”€β”€ RemoveTeamMemberTest.php
β”‚   β”‚   β”œβ”€β”€ TwoFactorAuthenticationSettingsTest.php
β”‚   β”‚   β”œβ”€β”€ UpdatePasswordTest.php
β”‚   β”‚   β”œβ”€β”€ UpdateTeamMemberRoleTest.php
β”‚   β”‚   └── UpdateTeamNameTest.php
β”‚   β”‚
β”‚   β”œβ”€β”€ Unit\
β”‚   β”‚   └── ExampleTest.php
β”‚   β”‚
β”‚   β”œβ”€β”€ CreatesApplication.php
β”‚   └── TestCase.php
β”‚
β”œβ”€β”€ .editorconfig
β”œβ”€β”€ .env.example
β”œβ”€β”€ .gitattributes
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .htaccess
β”œβ”€β”€ .styleci.yml
β”œβ”€β”€ 0f56a1d58ea6b9e3758adf71116c78bb.html
β”œβ”€β”€ Procfile.txt
β”œβ”€β”€ README.md
β”œβ”€β”€ adminer.php
β”œβ”€β”€ artisan
β”œβ”€β”€ composer.json
β”œβ”€β”€ composer.lock
β”œβ”€β”€ index.php
β”œβ”€β”€ mix-manifest.json
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
β”œβ”€β”€ phpunit.xml
β”œβ”€β”€ robots.txt
β”œβ”€β”€ server.php
β”œβ”€β”€ tailwind.config.js
β”œβ”€β”€ web.config
└── webpack.mix.js

Join Us

Be a part of the SemiKolan Developer's Community by joining our Discord Server. Here you can discuss about the project or ask any other queries and there will be a lot of folks to help

Code Contributers

This project exists thanks to all the people who contribute. [Contribute].

About

This Repository contains the codebase for SemiKolan Blogs. Tech Stack used here is Laravel (PHP)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages