laravel-email-verification
This Laravel package provides a simple drawer-based front-end layout., (*1)
Requirements
Screenshots
, (*2)
, (*3)
, (*4)
Installation
Install the package using composer
composer require aliabdulaziz/laravel-md-drawer
Add the service provider (for Laravel < 5.5)
Go to: (Your Laravel App) --> config --> app.php, (*5)
and add the following line under 'Package Service Providers' comment:, (*6)
Aliabdulaziz\LaravelMDDrawer\LaravelMDDrawerServiceProvider::class
Publish views and asset files
php artisan vendor:publish --provider="Aliabdulaziz\LaravelMDDrawer\LaravelMDDrawerServiceProvider"
Usage
use the package layout on your views:, (*7)
@extends('laravelmddrawer::app')
example
@extends('laravelmddrawer::app')
@section('content')
@if (session('status'))
{{ session('status') }}
@endif
You are logged in!
@endsection
Customization
After publishing the package files, the package views will be located in:
(Your Laravel app) --> views --> vendor --> laravelmddrawer, (*8)
these files are what you need to customize., (*9)