7 | @stop
8 |
--------------------------------------------------------------------------------
/resources/views/backoff/user/action.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | @can('user-view')
4 |
5 |
6 |
7 | @endcan
8 |
9 | @can('user-edit')
10 |
11 |
12 |
13 | @endcan
14 |
15 | @can('user-delete')
16 |
17 |
18 |
19 | @endcan
20 |
21 |
--------------------------------------------------------------------------------
/resources/views/backoff/user/create.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
33 |
--------------------------------------------------------------------------------
/resources/views/backoff/user/index.blade.php:
--------------------------------------------------------------------------------
1 |
2 | @can('user-create')
3 |
4 | Add User
5 |
6 | @endcan
7 | @include('backoff.user.create')
8 | @include('backoff.user.view')
9 |
10 |
11 |
12 |
13 | @push('js')
14 |
19 | @endpush
20 |
--------------------------------------------------------------------------------
/resources/views/backoff/user/role.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
20 | @error('name')
{{ $message }} @enderror
21 |
22 |
23 |
32 |
--------------------------------------------------------------------------------
/resources/views/backoff/user/view.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
36 |
--------------------------------------------------------------------------------
/resources/views/errors/401.blade.php:
--------------------------------------------------------------------------------
1 | @extends('errors::minimal')
2 |
3 | @section('title', __('Unauthorized'))
4 | @section('code', '401')
5 | @section('message', __('Unauthorized'))
6 |
--------------------------------------------------------------------------------
/resources/views/errors/403.blade.php:
--------------------------------------------------------------------------------
1 | @extends('errors::minimal')
2 |
3 | @section('title', __('Forbidden'))
4 | @section('code', '403')
5 | @section('message', __($exception->getMessage() ?: 'Forbidden'))
6 |
--------------------------------------------------------------------------------
/resources/views/errors/404.blade.php:
--------------------------------------------------------------------------------
1 | @extends('errors::minimal')
2 |
3 | @section('title', __('Not Found'))
4 | @section('code', '404')
5 | @section('message', __('Not Found'))
6 |
--------------------------------------------------------------------------------
/resources/views/errors/419.blade.php:
--------------------------------------------------------------------------------
1 | @extends('errors::minimal')
2 |
3 | @section('title', __('Page Expired'))
4 | @section('code', '419')
5 | @section('message', __('Page Expired'))
6 |
--------------------------------------------------------------------------------
/resources/views/errors/429.blade.php:
--------------------------------------------------------------------------------
1 | @extends('errors::minimal')
2 |
3 | @section('title', __('Too Many Requests'))
4 | @section('code', '429')
5 | @section('message', __('Too Many Requests'))
6 |
--------------------------------------------------------------------------------
/resources/views/errors/500.blade.php:
--------------------------------------------------------------------------------
1 | @extends('errors::minimal')
2 |
3 | @section('title', __('Server Error'))
4 | @section('code', '500')
5 | @section('message', __('Server Error'))
6 |
--------------------------------------------------------------------------------
/resources/views/errors/503.blade.php:
--------------------------------------------------------------------------------
1 | @extends('errors::minimal')
2 |
3 | @section('title', __('Service Unavailable'))
4 | @section('code', '503')
5 | @section('message', __('Service Unavailable'))
6 |
--------------------------------------------------------------------------------
/resources/views/errors/layout.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | @yield('title')
9 |
10 |
11 |
12 |
13 |
14 |
15 |
48 |
49 |
50 |
51 |
52 |
53 | @yield('message')
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/resources/views/errors/minimal.blade.php:
--------------------------------------------------------------------------------
1 | @auth
2 | @extends(Auth::check() ? 'coreui::master' : 'errors::layout')
3 | @section('title', config('coreui.title', __('coreui::coreui.default_title')))
4 |
5 | @section('body')
6 |
7 |
8 |
9 | @yield('code')
10 |
11 |
12 |
13 | @yield('message')
14 |
15 |
16 |
17 | @stop
18 | @endauth
19 |
20 |
--------------------------------------------------------------------------------
/resources/views/home.blade.php:
--------------------------------------------------------------------------------
1 | @extends('coreui::master')
2 |
3 | @section('title', config('coreui.title', __('coreui::coreui.default_title')))
4 |
5 | @section('body')
6 |
7 |
8 |
9 |
12 |
13 |
You are now logged in!
14 |
Click on the button below to visit the official CoreUI documentation and learn how to build an amazing app.
15 |
Take me to CoreUI
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
You can also use headers like this image!
26 |
Go somewhere
27 |
28 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
Alarming title
38 |
You can use a couple of color classes to make your cards more visually appealing too!
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
Or make use of some slightly less intense coloring, which can convey your intentions well enough too.
47 |
48 |
49 |
50 |
51 | @stop
52 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/action.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/boolean.blade.php:
--------------------------------------------------------------------------------
1 |
2 | @if($value)
3 |
4 | @else
5 |
6 | @endif
7 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/checkbox.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/delete.blade.php:
--------------------------------------------------------------------------------
1 |
58 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/editable.blade.php:
--------------------------------------------------------------------------------
1 |
15 | {!! $value !!}
17 |
18 |
21 |
22 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/filters/boolean.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 | No
11 | Yes
12 |
13 |
14 |
15 | @isset($this->activeBooleanFilters[$index])
16 | @if($this->activeBooleanFilters[$index] == 1)
17 |
19 | YES
20 |
21 |
22 | @elseif(strlen($this->activeBooleanFilters[$index]) > 0)
23 |
25 | No
26 |
27 |
28 | @endif
29 | @endisset
30 |
31 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/filters/date.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/filters/editable.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 | @foreach($this->activeTextFilters[$index] ?? [] as $key => $value)
11 |
12 | {{ $this->getDisplayValue($index, $value) }}
13 |
14 |
15 | @endforeach
16 |
17 |
18 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/filters/number.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/filters/select.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
11 | @foreach($options as $value => $label)
12 | @if(is_object($label))
13 | {{ $label->name }}
14 | @elseif(is_array($label))
15 | {{ $label['name'] }}
16 | @elseif(is_numeric($value))
17 | {{ $label }}
18 | @else
19 | {{ $label }}
20 | @endif
21 | @endforeach
22 |
23 |
24 |
25 |
26 | @foreach($this->activeSelectFilters[$index] ?? [] as $key => $value)
27 |
29 | {{ $this->getDisplayValue($index, $value) }}
30 |
31 |
32 | @endforeach
33 |
34 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/filters/string.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 | @foreach($this->activeTextFilters[$index] ?? [] as $key => $value)
11 |
12 | {{ $this->getDisplayValue($index, $value) }}
13 |
14 |
15 | @endforeach
16 |
17 |
18 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/filters/time.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/header-inline-hide.blade.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
7 | {{ str_replace('_', ' ', $column['label']) }}
8 |
9 |
10 |
12 |
13 |
14 |
15 |
17 |
19 | {{ str_replace('_', ' ', $column['label']) }}
20 |
21 | @if($sort === $index)
22 | @if($direction)
23 |
24 | @else
25 |
26 | @endif
27 | @endif
28 |
29 |
30 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/header-no-hide.blade.php:
--------------------------------------------------------------------------------
1 | @if($column['hidden'])
2 | @else
3 |
4 |
5 | {{ str_replace('_', ' ', $column['label']) }}
6 |
7 | @if($sort === $index)
8 | @if($direction)
9 |
10 | @else
11 |
12 | @endif
13 | @endif
14 |
15 |
16 |
17 | @endif
18 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/hide-column-multiselect.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Show / Hide Columns
6 |
7 |
8 |
9 |
10 | @foreach($this->columns as $index => $column)
11 |
12 |
13 |
14 |
15 |
{{ $column['label'] }}
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
{{ $column['label'] }}
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 | @endforeach
34 |
35 |
36 |
37 |
38 |
39 |
53 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/highlight.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/arrow-circle-left.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 24 24"
2 | stroke="currentColor">
3 |
5 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/arrow-left.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 24 24" stroke="currentColor">
2 |
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/arrow-right.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 24 24" stroke="currentColor">
2 |
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/check-circle.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 24 24" stroke="currentColor">
2 |
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/chevron-down.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 24 24" stroke="currentColor">
2 |
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/chevron-up.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 24 24" stroke="currentColor">
2 |
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/cog.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 24 24" stroke="currentColor">
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/excel.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 384 512">
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/trash.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5']) }} fill="none" stroke="currentColor">
2 |
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/icons/x-circle.blade.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'h-5 w-5 stroke-current']) }} fill="none" viewBox="0 0 24 24" stroke="currentColor">
2 |
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/link.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/tailwind-pagination.blade.php:
--------------------------------------------------------------------------------
1 |
48 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/tailwind-simple-pagination.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | @if ($paginator->onFirstPage())
4 |
5 |
6 | Previous
7 |
8 | @else
9 |
10 |
11 | Previous
12 |
13 | @endif
14 |
15 |
16 |
17 | @if ($paginator->hasMorePages())
18 |
19 | Next
20 |
21 |
22 | @else
23 |
24 | Next
25 |
26 |
27 | @endif
28 |
29 |
--------------------------------------------------------------------------------
/resources/views/livewire/datatables/tooltip.blade.php:
--------------------------------------------------------------------------------
1 |
2 | {{ Str::limit($slot, $length) }}
3 | {{ $slot }}
4 |
--------------------------------------------------------------------------------
/resources/views/vendor/coreui/account.blade.php:
--------------------------------------------------------------------------------
1 | @if (\Illuminate\Support\Facades\Auth::user() !== null)
2 |
28 | @endif
29 |
--------------------------------------------------------------------------------
/resources/views/vendor/coreui/auth/passwords/email.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | {{ __('coreui::coreui.password_reset_message') }}
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
{{ __('coreui::coreui.password_reset_message') }}
20 |
{{ __('coreui::coreui.enter_email_message') }}
21 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/resources/views/vendor/coreui/auth/passwords/reset.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | {{ __('coreui::coreui.reset_password') }}
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
Reset password
20 |
{{ __('coreui::coreui.reset_password') }}
21 |
22 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
--------------------------------------------------------------------------------
/resources/views/vendor/coreui/footer.blade.php:
--------------------------------------------------------------------------------
1 |
2 | © {{ \Carbon\Carbon::now()->year }} HZ University of Applied Sciences
3 |
4 |
9 |
--------------------------------------------------------------------------------
/resources/views/vendor/coreui/menu-item.blade.php:
--------------------------------------------------------------------------------
1 | @if(is_string($item))
2 |
3 | @elseif(isset($item['submenu']))
4 |
19 | @elseif(isset($item['text']) && $item['href'] == "#")
20 |
21 | @else
22 |
37 | @endif
38 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire-select/default.blade.php:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 | {{ $placeholder }}
8 |
9 |
10 | @foreach($options as $option)
11 |
12 | {{ $option['description'] }}
13 |
14 | @endforeach
15 |
16 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire-select/search-input.blade.php:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire-select/search-no-results.blade.php:
--------------------------------------------------------------------------------
1 |
2 | {{ $noResultsMessage }}
3 |
4 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire-select/search-option-item.blade.php:
--------------------------------------------------------------------------------
1 |
9 | {{ $option['description'] }}
10 |
11 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire-select/search-options-container.blade.php:
--------------------------------------------------------------------------------
1 |
6 | @if(!$emptyOptions)
7 | @foreach($options as $option)
8 | @include($searchOptionItem, [
9 | 'option' => $option,
10 | 'index' => $loop->index,
11 | 'styles' => $styles,
12 | ])
13 | @endforeach
14 | @elseif ($isSearching)
15 | @include($searchNoResultsView, [
16 | 'styles' => $styles,
17 | ])
18 | @endif
19 |
20 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire-select/search-selected-option.blade.php:
--------------------------------------------------------------------------------
1 |
9 |
10 | {{ data_get($selectedOption, 'description', 'Override selectedOption() with keyed array (value, description) for meaningful description') }}
11 |
12 |
13 |
17 |
18 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire-select/search.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | @include($searchInputView, [
4 | 'name' => $name,
5 | 'placeholder' => $placeholder,
6 | 'styles' => $styles,
7 | ])
8 |
9 | @include($searchOptionsContainer, [
10 | 'options' => $options,
11 | 'emptyOptions' => $emptyOptions,
12 | 'isSearching' => $isSearching,
13 | 'styles' => $styles,
14 | ])
15 |
16 |
17 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire-select/select.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | @if(!$searchable && $shouldShow)
5 | @include($defaultView, [
6 | 'name' => $name,
7 | 'options' => $options,
8 | 'placeholder' => $placeholder,
9 | 'styles' => $styles,
10 | ])
11 | @endif
12 |
13 |
14 |
54 | @if($searchable && $shouldShow)
55 |
56 | @if(!empty($value))
57 | @include($searchSelectedOptionView, [
58 | 'styles' => $styles,
59 | 'selectedOption' => $selectedOption,
60 | 'value' => $value,
61 | 'name' => $name,
62 | ])
63 | @else
64 | @include($searchView, [
65 | 'name' => $name,
66 | 'placeholder' => $placeholder,
67 | 'options' => $options,
68 | 'isSearching' => !empty($searchTerm),
69 | 'emptyOptions' => $options->isEmpty(),
70 | 'styles' => $styles,
71 | ])
72 | @endif
73 |
74 | @endif
75 |
76 |
77 |
78 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire/bootstrap.blade.php:
--------------------------------------------------------------------------------
1 |
2 | @if ($paginator->hasPages())
3 |
4 |
46 |
47 | @endif
48 |
49 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire/simple-bootstrap.blade.php:
--------------------------------------------------------------------------------
1 |
2 | @if ($paginator->hasPages())
3 |
4 |
27 |
28 | @endif
29 |
30 |
--------------------------------------------------------------------------------
/resources/views/vendor/livewire/simple-tailwind.blade.php:
--------------------------------------------------------------------------------
1 |
2 | @if ($paginator->hasPages())
3 |
4 |
5 | {{-- Previous Page Link --}}
6 | @if ($paginator->onFirstPage())
7 |
8 | {!! __('pagination.previous') !!}
9 |
10 | @else
11 |
12 | {!! __('pagination.previous') !!}
13 |
14 | @endif
15 |
16 |
17 |
18 | {{-- Next Page Link --}}
19 | @if ($paginator->hasMorePages())
20 |
21 | {!! __('pagination.next') !!}
22 |
23 | @else
24 |
25 | {!! __('pagination.next') !!}
26 |
27 | @endif
28 |
29 |
30 | @endif
31 |
32 |
--------------------------------------------------------------------------------
/resources/views/vendor/sweetalert/alert.blade.php:
--------------------------------------------------------------------------------
1 | @if (config('sweetalert.alwaysLoadJS') === true && config('sweetalert.neverLoadJS') === false )
2 |
3 | @endif
4 | @if (Session::has('alert.config'))
5 | @if(config('sweetalert.animation.enable'))
6 |
7 | @endif
8 | @if (config('sweetalert.alwaysLoadJS') === false && config('sweetalert.neverLoadJS') === false)
9 |
10 | @endif
11 |
14 | @endif
15 |
--------------------------------------------------------------------------------
/routes/api.php:
--------------------------------------------------------------------------------
1 | get('/user', function (Request $request) {
18 | return $request->user();
19 | });
20 |
--------------------------------------------------------------------------------
/routes/channels.php:
--------------------------------------------------------------------------------
1 | id === (int) $id;
18 | });
19 |
--------------------------------------------------------------------------------
/routes/console.php:
--------------------------------------------------------------------------------
1 | comment(Inspiring::quote());
19 | })->purpose('Display an inspiring quote');
20 |
--------------------------------------------------------------------------------
/routes/web.php:
--------------------------------------------------------------------------------
1 | name('dashboard');
23 |
24 | Route::prefix('backoff')->group(function () {
25 | Route::view('/user','backoff.user')->middleware('can:user-index')->name('backoff.user');
26 | Route::view('/role','backoff.role')->middleware('can:role-index')->name('backoff.role');
27 | Route::view('/permission','backoff.permission')->middleware('can:permission-index')->name('backoff.permission');
28 | });
29 |
30 | Route::prefix('dev')->group(function () {
31 | Route::view('/menu','backoff.menu')->middleware('can:menu-index')->name('dev.menu');
32 | });
33 |
--------------------------------------------------------------------------------
/server.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 |
10 | $uri = urldecode(
11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
12 | );
13 |
14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the
15 | // built-in PHP web server. This provides a convenient way to test a Laravel
16 | // application without having installed a "real" web server software here.
17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
18 | return false;
19 | }
20 |
21 | require_once __DIR__.'/public/index.php';
22 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/debugbar/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | compiled.php
2 | config.php
3 | down
4 | events.scanned.php
5 | maintenance.php
6 | routes.php
7 | routes.scanned.php
8 | schedule-*
9 | services.json
10 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/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/CreatesApplication.php:
--------------------------------------------------------------------------------
1 | make(Kernel::class)->bootstrap();
19 |
20 | return $app;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/tests/Feature/ExampleTest.php:
--------------------------------------------------------------------------------
1 | get('/');
18 |
19 | $response->assertStatus(200);
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/webpack.mix.js:
--------------------------------------------------------------------------------
1 | const mix = require('laravel-mix');
2 |
3 | /*
4 | |--------------------------------------------------------------------------
5 | | Mix Asset Management
6 | |--------------------------------------------------------------------------
7 | |
8 | | Mix provides a clean, fluent API for defining some Webpack build steps
9 | | for your Laravel applications. By default, we are compiling the CSS
10 | | file for the application as well as bundling up all the JS files.
11 | |
12 | */
13 |
14 | mix.js('resources/js/app.js', 'public/js')
15 | .postCss('resources/css/app.css', 'public/css', [
16 | //
17 | ]);
18 |
--------------------------------------------------------------------------------