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.
17 lines
316 B
PHTML
17 lines
316 B
PHTML
1 year ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\Customer;
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use App\Models\CustomerLevel;
|
||
|
|
||
|
class CustomerLevelController extends Controller
|
||
|
{
|
||
|
public function index()
|
||
|
{
|
||
|
return inertia('CustomerLevel/Index', [
|
||
|
'levels' => CustomerLevel::all(),
|
||
|
]);
|
||
|
}
|
||
|
}
|