61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| use Illuminate\Support\Facades\DB;
 | |
| 
 | |
| class OrdersDrivers extends Model
 | |
| {
 | |
|     public static function get()
 | |
|     {
 | |
|         return DB::select("SELECT * FROM t_orders_drivers;");
 | |
|     }
 | |
| 
 | |
|     public static function getById($id)
 | |
|     {
 | |
|         return DB::select("SELECT * FROM t_orders_drivers WHERE id = ? LIMIT 1;", [$id]);
 | |
|     }
 | |
| 
 | |
|     public static function getByOrdCode($code)
 | |
|     {
 | |
|         return DB::select("SELECT * FROM t_orders_drivers WHERE ord_code = ? LIMIT 1;", [$code]);
 | |
|     }
 | |
| 
 | |
|     public static function getByOrdCodeByStatus($code, $status)
 | |
|     {
 | |
|         return DB::select("SELECT * FROM t_orders_drivers WHERE ord_code = ? AND status = ? LIMIT 1;", [$code, $status]);
 | |
|     }
 | |
| 
 | |
| 	public static function getByOrdId($ordid)
 | |
|     {
 | |
|         return DB::select("SELECT * FROM t_orders_drivers WHERE ord_id = ? LIMIT 1;", [$ordid]);
 | |
|     }
 | |
| 
 | |
|     public static function add($data)
 | |
|     {
 | |
|         $id = DB::table("t_orders_drivers")->insertGetId($data);
 | |
|         return $id;
 | |
|     }
 | |
| 
 | |
|     public static function updt($id, $data)
 | |
|     {
 | |
|         return DB::table("t_orders_drivers")->where("id", $id)->update($data);
 | |
|     }
 | |
| 
 | |
|     public static function updtByOrdId($ord_id, $data)
 | |
|     {
 | |
|         return DB::table("t_orders_drivers")->where("ord_id", $ord_id)->update($data);
 | |
|     }
 | |
| 
 | |
|     public static function dlt($id)
 | |
|     {
 | |
|         return DB::table("t_orders_drivers")->where("id", $id)->delete();
 | |
|     }
 | |
| 
 | |
|     public static function dltByOrdId($ord_id)
 | |
|     {
 | |
|         return DB::table("t_orders_drivers")->where("ord_id", $ord_id)->delete();
 | |
|     }
 | |
| }
 | 
