|
|
|
@ -10,14 +10,27 @@ class PetiApiController extends Controller
|
|
|
|
|
{ |
|
|
|
|
public function index() |
|
|
|
|
{ |
|
|
|
|
$petis = \App\Models\Peti::with([ |
|
|
|
|
// 'customer:id,name,code_customer,lot_no,nip,no_hp,tgl_lahir,jenis_kelamin,agama,address', |
|
|
|
|
// 'tipe_peti:id,type,size_peti,description', |
|
|
|
|
// 'warehouse:id,name,address', |
|
|
|
|
'customer', |
|
|
|
|
'tipe_peti', |
|
|
|
|
'warehouse', |
|
|
|
|
// $petis = \App\Models\Peti::get(); |
|
|
|
|
$petis = \App\Models\Peti::select([ |
|
|
|
|
'id', |
|
|
|
|
'fix_lot', |
|
|
|
|
'status', |
|
|
|
|
'customer_id', |
|
|
|
|
'warehouse_id', |
|
|
|
|
'kondisipeti_id', |
|
|
|
|
// 'created_at', |
|
|
|
|
// 'updated_at', |
|
|
|
|
'deleted_at' |
|
|
|
|
])->get(); |
|
|
|
|
// with([ |
|
|
|
|
// 'customer:id,name,code_customer,lot_no,nip,no_hp,tgl_lahir,jenis_kelamin,agama,address', |
|
|
|
|
// 'tipe_peti:id,type,size_peti,description', |
|
|
|
|
// 'warehouse:id,name,address', |
|
|
|
|
// 'customer', |
|
|
|
|
// 'tipe_peti', |
|
|
|
|
// 'warehouse', |
|
|
|
|
// ])-> |
|
|
|
|
// get(); |
|
|
|
|
|
|
|
|
|
if (!$petis) { |
|
|
|
|
return ResponseFormatter::error([ |
|
|
|
|