芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Repositories/Tax/EloquentTax.php
model = $tax; } public function all() { if (!Auth::user()->isFromPlatform()) { return $this->model->mine()->with('country', 'state')->get(); } return $this->model->with('country', 'state')->get(); } public function trashOnly() { if (!Auth::user()->isFromPlatform()) { return $this->model->mine()->onlyTrashed()->get(); } return parent::trashOnly(); } }