FileManager

This commit is contained in:
Kevin Adametz 2020-03-07 19:45:39 +01:00
parent c8948338bb
commit f1e0900a7a
131 changed files with 5844 additions and 3081 deletions

View file

@ -5,7 +5,7 @@ namespace App\Http\Controllers;
use App\Models\Booking;
use App\Models\BookingDraftItem;
use App\Repositories\BookingRepository;
use Input;
use Request;
class BookingController extends Controller
{
@ -50,7 +50,7 @@ class BookingController extends Controller
// \Session()->flash('alert-save', '1');
$data = Input::all();
$data = Request::all();
if($id == "new") {
$booking = new Booking();
}else{