mein-sterntours/app/Repositories/BookingRepository.php
2018-11-17 02:03:59 +01:00

21 lines
No EOL
282 B
PHP

<?php
namespace App\Repositories;
use App\Models\Booking;
class BookingRepository extends BaseRepository {
public function __construct(Booking $model)
{
$this->model = $model;
}
public function update($data)
{
return $this->model;
}
}