Skip to Content
PHPCODE
Directory Structure in Laravel
laravel code / August 18, 2018

Directory Structure in Laravel

(1)app
(2)artisan
(3)bootstrap
(4)composer.json
(5)composer.lock
(6)config
(7)database
(8)package.json
(9)phpunit.xml
(10)public
(11)resources
(12)routes
(13)server.php
(14)storage
(15)tests
(16)vendor
(17)webpack.min.js

mac linux os
(14)storage reade or write permision

(1) app
(1)console command line application
(1)Kerner.php
(2)Exceptions
(1)Handler.php
(2)events for example registrion email bhejna sms hoi to
(4)Http
(1) Controller
(1)Auth
(1)ForgotPasswordController.php
(2)LoginController.php
(3)RegisterController.php
(4)ResetPasswordController.php
(1)Controoler.php (Base Controller)

(2) Middleware
URL Hits
(1)EncryptCookies.php
(2)RedirectIfAuthenticated.php
(3)TrimStrings.php
(4)VerifyCsrfToken.php
(2)Kernel.php
(3)Providers means created packageies
(1)AppServiceProvider.php
(2)AuthServiceProvider.php
(3)BroadcastServiceProvider.php
(4)EventServiceProvide.php
(5)RouteServiceProvider.php
(3)User.php
(3) Request
form submit permission form validations
(1)routes url aapki mirjise

(4)User.php that is model
(4)Job Cron hoti
(2)Bootstrap
(1)cache
(1).gitignore
(2)Services.php
(2)app.php
(3)autoload.php

(3)config
(1)app.php
(2)auth.php
(3)broadcasting.php
(4)cache.php
(5)database.php
(6)filesystems.php
(7)mail.php
(8)queue.php
(9)services.php
(10)session.php
(11)view.php
(3)database
(1)factories
(1)ModelFactory.php
(2)Migrations change delete cap kya details
(1)2014_10_12_000000_create_users_table.php
(2)2014_10_12_100000_create_password_resets_table.php
(3)seeds
(1)DatabaseSeeder.php
(3).gitignore

(4)public
(1)css
(1)app.css
(2)js
(1)app.js
(3).htaccess
(4)favicon.ico
(5)index.ph
(6)robots.txt
(7)web.config
(5)resources
(1)assets
(1)js
(1)components
(1)app.js
(2)bootstrap.js
(2)sass generate languge he css file create karne liye
(1)_variables.scss
(2)app.scss
(2)lang
(1)en
(1)Auth.php
(2)Pagination.php
(3)passwords.php
(4)validation.php
(3)views
(1)welcome.blade.php

(6)routes
(1)api.php
(2)channels.php
(3)console.php
(4)web.php
(7)storage
(1)app
(2)framework
(3)logs
(8)tests tesing
(9)vendor all packagies in laravel

PHPCODE © 2023