how to change SQL Query
SELECT * FROM aps WHERE kategori IS NULL
to Laravel Eloquent/Query Builder?
$apps = DB::table('aps')
->whereNull('kategori');
The above query can be written as
DB::table('aps')->whereNull('kategori')->get();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With