/
home
/
sjslayjy
/
public_html
/
tabson
/
app
/
Exports
/
Upload File
HOME
<?php namespace App\Exports; use App\Item; use Maatwebsite\Excel\Concerns\FromCollection; class UsersExport implements FromCollection { /** * @return \Illuminate\Support\Collection */ public function collection() { return Item::all(); } }