コード例 #1
0
ファイル: ClientesController.php プロジェクト: rasouza/avm
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $clientes = Cliente::active()->orderBy('nome', 'asc')->get();
     return view('comercial.clientes.index', compact('clientes'));
 }