57 lines
1.1 KiB
PHP
57 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Repositories\Botanic;
|
|
|
|
use App\Exports\Botanic\GenresExport;
|
|
use App\Models\Botanic\Genre;
|
|
use Maatwebsite\Excel\Facades\Excel;
|
|
|
|
class Genres
|
|
{
|
|
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)
|
|
{
|
|
$item = ($data['id'] ?? false) ? self::update($data) : self::create($data);
|
|
|
|
return $item->id;
|
|
}
|
|
|
|
public static function create($data)
|
|
{
|
|
return Genre::create($data);
|
|
}
|
|
|
|
public static function update($data, $id = false)
|
|
{
|
|
$id = $id ? $id : $data['id'];
|
|
$model = self::get($id);
|
|
$model->update($data);
|
|
|
|
return $model;
|
|
}
|
|
|
|
public static function destroy($id)
|
|
{
|
|
return Genre::destroy($id);
|
|
}
|
|
|
|
public static function exportExcel()
|
|
{
|
|
return Excel::download(new GenresExport, 'genres.xlsx');
|
|
}
|
|
}
|