Store Customer, Store Booking details

This commit is contained in:
Kevin Adametz 2021-05-19 18:04:31 +02:00
parent b362b93bca
commit 6706d28f51
33 changed files with 1048 additions and 257 deletions

View file

@ -31,34 +31,6 @@ class LeadMailController extends Controller
$this->leadMailRepo = $leadMailRepo;
}
/*public function index()
{
$data = [
];
return view('customer.mail.index', $data);
}
public function detail($id)
{
if($id === "new") {
$lead_mail = new LeadMail();
$id = 'new';
}else{
$lead_mail = LeadMail::findOrFail($id);
$id = $lead_mail->id;
}
$data = [
'lead_mail' => $lead_mail,
'id' => $id,
'back' => URL::previous(),
];
return view('customer.mail.detail', $data);
}*/
public function store($id, $action=false)
{