mekadalibrahem / toolkit
package provides a wide range of functionalities that are essential for various laravel projects
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
Requires
- php: ^8.2
- illuminate/console: ^11.0
- illuminate/support: ^11.0
- jenssegers/agent: ^2.6
Requires (Dev)
- orchestra/testbench: ^9.0
- phpunit/phpunit: ^10.0
This package is auto-updated.
Last update: 2025-04-29 01:24:37 UTC
README
package provides a wide range of functionalities that are essential for various laravel projects
download
- donwload package :
composer require mekadalibrahem/toolkit
- for laravel 10 download version ^1
composer require mekadalibrahem/toolkit=^1
- install package :
php artisan toolkit:install
- update your database tables
php artisan migrate
Enable Verify Email
- verify that your
App\Models\User
model implements theIlluminate\Contracts\Auth\MustVerifyEmail
contract:
<?php namespace App\Models; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable implements MustVerifyEmail { use Notifiable; // ... }
show more in laravel docs verification
- add your mail driver config in
.env
file
MAIL_MAILER= MAIL_HOST= MAIL_PORT= MAIL_USERNAME= MAIL_PASSWORD= MAIL_ENCRYPTION= MAIL_FROM_ADDRESS= MAIL_FROM_NAME="${APP_NAME}"
show more about mail in laravel docs mail