Commit 9c9325e4 authored by sandroresende's avatar sandroresende

retirada dos campos uf e municipio

parent 0b293f93
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
namespace App\Http\Controllers\Propostas; namespace App\Http\Controllers\Propostas;
use App\EntePublico;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use App\Http\Controllers\Controller; use App\Http\Controllers\Controller;
...@@ -198,6 +199,8 @@ class PropostaController extends Controller ...@@ -198,6 +199,8 @@ class PropostaController extends Controller
$usuario = User::where($where)->firstOrFail(); $usuario = User::where($where)->firstOrFail();
$ente_publico = EntePublico::find($entePublicoId);
DB::beginTransaction(); DB::beginTransaction();
$proposta = new Propostas; $proposta = new Propostas;
...@@ -275,6 +278,7 @@ class PropostaController extends Controller ...@@ -275,6 +278,7 @@ class PropostaController extends Controller
$usuario = User::where($where)->firstOrFail(); $usuario = User::where($where)->firstOrFail();
DB::beginTransaction(); DB::beginTransaction();
$proposta = Propostas::find($request->proposta_id); $proposta = Propostas::find($request->proposta_id);
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment