Dexter Evil Clone.

Alchemiclabs.ca


Welcome Demo

Onthego - a Laravel project

Summary

The Project is expanding the process that the shop use to make the management of their customers and repair service. To move away from paper ticket service to a digetal management.

First Step

The app starts with a simple collection of customer contract data.

creates the project and adds user auth

  composer create-project laravel/laravel Onthego
  cd Onthego
  composer require laravel/breeze --dev
  php artisan breeze:install

First steps we create a default laravel project and install the breeze authentication. This will lay down the bace structure for administration and role management.

make the models

create the model and migration

  php artisan make:model Customers -m
  php artisan make:model Repairs -m

Add role for user

  php artisan make:migration add_role_to_users_table --table=users

make the controllers

create the controller resources

create standard controller

make the views

create the views

main layout

edit routes

Add Middleware for the roles and authenticate user

notes

Auth

Notifications