66 lines
1.3 KiB
PHP
66 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Repositories\Botanic;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Str;
|
|
|
|
use Yajra\DataTables\DataTables;
|
|
use Maatwebsite\Excel\Facades\Excel;
|
|
|
|
use App\Models\Botanic\Genre;
|
|
use App\Exports\Botanic\GenresExport;
|
|
|
|
class Genres
|
|
{
|
|
|
|
public static function getDatatable()
|
|
{
|
|
$model = Genre::orderBy('name');
|
|
return Datatables::of($model)->make(true);
|
|
}
|
|
|
|
public static function getOptions()
|
|
{
|
|
return Genre::get()->SortBy('name')->pluck('name','id')->toArray();
|
|
}
|
|
|
|
public static function getAll()
|
|
{
|
|
return Genre::orderBy('name','asc')->get();
|
|
}
|
|
|
|
public static function get($id)
|
|
{
|
|
return Genre::find($id);
|
|
}
|
|
|
|
public static function store($data)
|
|
{
|
|
$id = isset($data['id']) ? $data['id'] : false;
|
|
$item = $id ? self::update($data) : self::create($data);
|
|
return $item->id;
|
|
}
|
|
|
|
public static function create($data)
|
|
{
|
|
return Genre::create($data);
|
|
}
|
|
|
|
public static function update($data)
|
|
{
|
|
return Genre::find($id)->update($data);
|
|
}
|
|
|
|
public static function destroy($id)
|
|
{
|
|
return Genre::destroy($id);
|
|
}
|
|
|
|
public static function exportExcel()
|
|
{
|
|
return Excel::download(new GenresExport, 'genres.xlsx');
|
|
}
|
|
}
|