智能联系人 / 跟踪应用程序日志
此包最新版本(v1.0.2)没有提供许可信息。
v1.0.2
2023-03-14 12:02 UTC
Requires
- jenssegers/agent: ^2.6
- maatwebsite/excel: ^3.1
This package is auto-updated.
Last update: 2024-09-14 14:56:54 UTC
README
安装
composer require smart-contact/tracking-application-log
php artisan tracking-application-log:install
php artisan migrate
定义访问权限
protected function gate()
{
Gate::define('view', function ($user) {
//here you can define access
});
}
添加 LaravelExcel
在 config/app.php 中添加以下行
'providers' => [
...
Maatwebsite\Excel\ExcelServiceProvider::class,
...
]
'aliases' => [
...
'Excel' => Maatwebsite\Excel\Facades\Excel::class,
...
]