Beispiel #1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  Ficha $ficha
  * @return \Illuminate\Http\Response
  */
 public function edit(Ficha $ficha)
 {
     $action = 'FichasController@update';
     $ufs = Uf::dropdown();
     $clientes = Cliente::dropdown();
     return view('comercial.fichas.form', compact('ficha', 'action', 'ufs', 'clientes'));
 }
Beispiel #2
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  Agenda $agenda
  * @return \Illuminate\Http\Response
  */
 public function edit(Agenda $agenda)
 {
     $action = 'AgendaController@update';
     $clientes = Cliente::dropdown();
     return view('operacional.agenda.form', compact('agenda', 'clientes', 'action'));
 }