コード例 #1
0
ファイル: Buku.php プロジェクト: udibagas/digilib
 public static function cari($judul)
 {
     return Buku::where('judul', 'LIKE', '%' . $judul . '%')->orderBy('judul', 'asc')->get();
 }