You are on page 1of 1

1.

Create Project
2. Create database
3. Edit env file by changing appname, database name
4. Make table using make migration for ADMIN in terminal
5. Add columns in table then migrate in terminal
6. Store admin panel template in public/admin folder
7. Make model Dashboard with model migration and controller(mrc)
8. change functions in dashboard controller (return view/admin.master in dashboard
function )
9. copy admin dashboard in views/admin/master.blade.php
10. edit web.php by adding routes for dashboard function (Route::get('/dashboard',
[DashboardController::class,'dashboard']);)
11. edit master.blade.php by correcting path for each href file location
12. create header.blade.php and copy header part from master file to header file
13. create sidebar.blade.php and copy sidebar part from master file to sidebar file
14. editing header and sidebar part in master file by changing it to
@include(admin.includes.file)
15. create dashboard.blade.php and copy content part from master file to dashboard
file in format (
@extends('admin.master')

@section('title','Dashboard')
@section('content')
@endsection
)
16. edit content part in master file by changing it to @yield('content')
17. edit title part in master file by changing it to @yield('title')
18. create RegisterController using command in terminal
19. copy register part from public folder to register file in admin.auth
20. edit register file by correcting each href file location
21. add register function route in web file
22. edit register controller by adding function for register
23.

You might also like