You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
592 B
PHTML
30 lines
592 B
PHTML
2 years ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\Api;
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use App\Models\Customer;
|
||
|
use Illuminate\Http\Request;
|
||
|
|
||
|
class CustomerController extends Controller
|
||
|
{
|
||
|
public function index(Request $request)
|
||
|
{
|
||
|
$query = Customer::query();
|
||
|
|
||
|
if ($request->q) {
|
||
|
$query->where('name', 'like', "%{$request->q}%");
|
||
|
}
|
||
|
|
||
|
if ($request->except_id) {
|
||
|
$query->where('id', '!=', $request->except_id);
|
||
|
}
|
||
|
|
||
|
if ($request->all == 1) {
|
||
|
return $query->get();
|
||
|
}
|
||
|
|
||
|
return $query->get();
|
||
|
}
|
||
|
}
|