Answers for "Primary Termmaatwebsite/excel store s3"

PHP
0

Primary Termmaatwebsite/excel store s3

$fileName = $date . '.xls';

    $fileContent = Excel::create($fileName , function($excel) use ($licencies) {
        $excel->sheet('Excel', function($sheet) use ($licencies) {
            $sheet->fromArray($licencies);
        });
    })->string('xls');

    Storage::disk('s3')->put($fileName, $fileContent);
Posted by: Guest on March-18-2022

Browse Popular Code Answers by Language