smart-contact/tracking-application-log

There is no license information available for the latest version (v1.0.2) of this package.

v1.0.2 2023-03-14 12:02 UTC

This package is auto-updated.

Last update: 2024-04-14 14:08:46 UTC


README

Installation

composer require smart-contact/tracking-application-log
php artisan tracking-application-log:install
php artisan migrate

Define access

protected function gate()
    {
        Gate::define('view', function ($user) {
            //here you can define access
        });
    }

Add LaravelExcel

On config/app.php add this lines:

'providers' => [
    ...
    Maatwebsite\Excel\ExcelServiceProvider::class,
    ...
]
'aliases' => [
    ...
   'Excel' => Maatwebsite\Excel\Facades\Excel::class,
   ...
]