├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Booking.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Hotel.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── BookingsController.php │ │ │ ├── HomeController.php │ │ │ ├── HotelsController.php │ │ │ ├── PermissionsController.php │ │ │ ├── RolesController.php │ │ │ ├── RoomTypesController.php │ │ │ ├── RoomsController.php │ │ │ └── UsersController.php │ │ ├── Api │ │ │ └── V1 │ │ │ │ └── Admin │ │ │ │ ├── BookingsApiController.php │ │ │ │ ├── HotelsApiController.php │ │ │ │ ├── PermissionsApiController.php │ │ │ │ ├── RolesApiController.php │ │ │ │ ├── RoomTypesApiController.php │ │ │ │ ├── RoomsApiController.php │ │ │ │ └── UsersApiController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ └── HomeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── AuthGates.php │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SetLocale.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── MassDestroyBookingRequest.php │ │ ├── MassDestroyHotelRequest.php │ │ ├── MassDestroyPermissionRequest.php │ │ ├── MassDestroyRoleRequest.php │ │ ├── MassDestroyRoomRequest.php │ │ ├── MassDestroyRoomTypeRequest.php │ │ ├── MassDestroyUserRequest.php │ │ ├── StoreBookingRequest.php │ │ ├── StoreHotelRequest.php │ │ ├── StorePermissionRequest.php │ │ ├── StoreRoleRequest.php │ │ ├── StoreRoomRequest.php │ │ ├── StoreRoomTypeRequest.php │ │ ├── StoreUserRequest.php │ │ ├── UpdateBookingRequest.php │ │ ├── UpdateHotelRequest.php │ │ ├── UpdatePermissionRequest.php │ │ ├── UpdateRoleRequest.php │ │ ├── UpdateRoomRequest.php │ │ ├── UpdateRoomTypeRequest.php │ │ └── UpdateUserRequest.php │ └── Resources │ │ └── Admin │ │ ├── BookingResource.php │ │ ├── HotelResource.php │ │ ├── PermissionResource.php │ │ ├── RoleResource.php │ │ ├── RoomResource.php │ │ ├── RoomTypeResource.php │ │ └── UserResource.php ├── Permission.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Role.php ├── Room.php ├── RoomType.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── panel.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2020_01_13_000001_create_permissions_table.php │ ├── 2020_01_13_000002_create_roles_table.php │ ├── 2020_01_13_000003_create_users_table.php │ ├── 2020_01_13_000004_create_hotels_table.php │ ├── 2020_01_13_000005_create_room_types_table.php │ ├── 2020_01_13_000006_create_rooms_table.php │ ├── 2020_01_13_000007_create_bookings_table.php │ ├── 2020_01_13_000008_create_permission_role_pivot_table.php │ ├── 2020_01_13_000009_create_role_user_pivot_table.php │ ├── 2020_01_13_000010_add_relationship_fields_to_rooms_table.php │ └── 2020_01_13_000011_add_relationship_fields_to_bookings_table.php └── seeds │ ├── BookingsTableSeeder.php │ ├── DatabaseSeeder.php │ ├── HotelsTableSeeder.php │ ├── PermissionRoleTableSeeder.php │ ├── PermissionsTableSeeder.php │ ├── RoleUserTableSeeder.php │ ├── RolesTableSeeder.php │ ├── RoomTypesTableSeeder.php │ ├── RoomsTableSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── app.css │ └── custom.css ├── favicon.ico ├── index.php ├── js │ ├── app.js │ └── main.js ├── mix-manifest.json └── robots.txt ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ └── ExampleComponent.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── cruds.php │ │ ├── global.php │ │ ├── pagination.php │ │ ├── panel.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── admin │ ├── bookings │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── hotels │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── relationships │ │ │ └── hotelRooms.blade.php │ │ └── show.blade.php │ ├── permissions │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── relationships │ │ │ └── permissionsRoles.blade.php │ │ └── show.blade.php │ ├── roles │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── relationships │ │ │ └── rolesUsers.blade.php │ │ └── show.blade.php │ ├── roomTypes │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── relationships │ │ │ └── roomTypeRooms.blade.php │ │ └── show.blade.php │ ├── rooms │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── relationships │ │ │ └── roomBookings.blade.php │ │ └── show.blade.php │ └── users │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── home.blade.php │ ├── layouts │ ├── admin.blade.php │ └── app.blade.php │ ├── partials │ ├── datatablesActions.blade.php │ └── menu.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Browser │ ├── BookingsTest.php │ ├── HotelsTest.php │ ├── PermissionsTest.php │ ├── RolesTest.php │ ├── RoomTypesTest.php │ ├── RoomsTest.php │ └── UsersTest.php ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/README.md -------------------------------------------------------------------------------- /app/Booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Booking.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Hotel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Hotel.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/BookingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Admin/BookingsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Admin/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/HotelsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Admin/HotelsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PermissionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Admin/PermissionsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/RolesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Admin/RolesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/RoomTypesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Admin/RoomTypesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/RoomsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Admin/RoomsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Admin/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/BookingsApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Api/V1/Admin/BookingsApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/HotelsApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Api/V1/Admin/HotelsApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/PermissionsApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Api/V1/Admin/PermissionsApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/RolesApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Api/V1/Admin/RolesApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/RoomTypesApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Api/V1/Admin/RoomTypesApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/RoomsApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Api/V1/Admin/RoomsApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/UsersApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Api/V1/Admin/UsersApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/AuthGates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/AuthGates.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyBookingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/MassDestroyBookingRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyHotelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/MassDestroyHotelRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyPermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/MassDestroyPermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/MassDestroyRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyRoomRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/MassDestroyRoomRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyRoomTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/MassDestroyRoomTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/MassDestroyUserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBookingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/StoreBookingRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreHotelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/StoreHotelRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/StorePermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/StoreRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoomRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/StoreRoomRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoomTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/StoreRoomTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/StoreUserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBookingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/UpdateBookingRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateHotelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/UpdateHotelRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/UpdatePermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/UpdateRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateRoomRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/UpdateRoomRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateRoomTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/UpdateRoomTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Requests/UpdateUserRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/BookingResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Resources/Admin/BookingResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/HotelResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Resources/Admin/HotelResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/PermissionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Resources/Admin/PermissionResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/RoleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Resources/Admin/RoleResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/RoomResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Resources/Admin/RoomResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/RoomTypeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Resources/Admin/RoomTypeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Http/Resources/Admin/UserResource.php -------------------------------------------------------------------------------- /app/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Permission.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Role.php -------------------------------------------------------------------------------- /app/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/Room.php -------------------------------------------------------------------------------- /app/RoomType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/RoomType.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/panel.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000001_create_permissions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000001_create_permissions_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000002_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000002_create_roles_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000003_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000003_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000004_create_hotels_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000004_create_hotels_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000005_create_room_types_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000005_create_room_types_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000006_create_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000006_create_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000007_create_bookings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000007_create_bookings_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000008_create_permission_role_pivot_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000008_create_permission_role_pivot_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000009_create_role_user_pivot_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000009_create_role_user_pivot_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000010_add_relationship_fields_to_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000010_add_relationship_fields_to_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_13_000011_add_relationship_fields_to_bookings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/migrations/2020_01_13_000011_add_relationship_fields_to_bookings_table.php -------------------------------------------------------------------------------- /database/seeds/BookingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/BookingsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/HotelsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/HotelsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionRoleTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/PermissionRoleTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/PermissionsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RoleUserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/RoleUserTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/RolesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RoomTypesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/RoomTypesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RoomsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/RoomsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/cruds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/lang/en/cruds.php -------------------------------------------------------------------------------- /resources/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/lang/en/global.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/panel.php: -------------------------------------------------------------------------------- 1 | 'Room Bookings', 5 | ]; 6 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/admin/bookings/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/bookings/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/bookings/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/bookings/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/bookings/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/bookings/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/bookings/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/bookings/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/hotels/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/hotels/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/hotels/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/hotels/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/hotels/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/hotels/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/hotels/relationships/hotelRooms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/hotels/relationships/hotelRooms.blade.php -------------------------------------------------------------------------------- /resources/views/admin/hotels/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/hotels/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/permissions/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/permissions/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/permissions/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/relationships/permissionsRoles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/permissions/relationships/permissionsRoles.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/permissions/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roles/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roles/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roles/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/relationships/rolesUsers.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roles/relationships/rolesUsers.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roles/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roomTypes/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roomTypes/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roomTypes/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roomTypes/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roomTypes/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roomTypes/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roomTypes/relationships/roomTypeRooms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roomTypes/relationships/roomTypeRooms.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roomTypes/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/roomTypes/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/rooms/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/rooms/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/rooms/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/rooms/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/rooms/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/rooms/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/rooms/relationships/roomBookings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/rooms/relationships/roomBookings.blade.php -------------------------------------------------------------------------------- /resources/views/admin/rooms/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/rooms/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/admin/users/show.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/layouts/admin.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/partials/datatablesActions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/partials/datatablesActions.blade.php -------------------------------------------------------------------------------- /resources/views/partials/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/partials/menu.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Browser/BookingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Browser/BookingsTest.php -------------------------------------------------------------------------------- /tests/Browser/HotelsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Browser/HotelsTest.php -------------------------------------------------------------------------------- /tests/Browser/PermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Browser/PermissionsTest.php -------------------------------------------------------------------------------- /tests/Browser/RolesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Browser/RolesTest.php -------------------------------------------------------------------------------- /tests/Browser/RoomTypesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Browser/RoomTypesTest.php -------------------------------------------------------------------------------- /tests/Browser/RoomsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Browser/RoomsTest.php -------------------------------------------------------------------------------- /tests/Browser/UsersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Browser/UsersTest.php -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Room-Booking-Filters/HEAD/webpack.mix.js --------------------------------------------------------------------------------