拥有laravel标签的文章

laravel下使用Elasticsearch驱动+Scout 全文搜索

前期准备: 安装```phpcomposer require laravel/scoutcomposer require matchish/laravelscoutelasticsearch``` 生成 Scout 配置文件 (config/scout.php)```phpphp artisan vendor:publish prov
阅读全文

laravel分批导出大量数据excel

```php private function exportCsv($list,$member_types) { set_time_limit(0); // 文件名称 $fileName = '会员导出' . date("YmdHis"); // 文件头 header
阅读全文

使用nfs解决Homestead 运行 Laravel 本地项目响应缓慢问题

vagrant up启动虚拟机后运行命令安装nfs`$ vagrant plugin install vagrantwinnfsd` 修改配置文件前建议先备份,以免修改后出现问题!文件 1:homestead/scripts/homestead.rb```php Register All Of The Configured Shared Folder
阅读全文

Laravel之sync()方法数据同步操作

Laravel之sync()方法数据同步操作
阅读全文

使用supervisor运行队列、守护进程

supervisor
阅读全文

laravel-queue队列简单介绍

laravel队列
阅读全文

laravel ORM模型关联

ORM模型关联
阅读全文