diff --git a/resources/views/os/create.blade.php b/resources/views/os/create.blade.php new file mode 100644 index 0000000..2acde16 --- /dev/null +++ b/resources/views/os/create.blade.php @@ -0,0 +1,36 @@ +@section('title') {{'Insert operating system'}} @endsection + + + {{ __('Insert a new OS') }} + +
+ +

Operating system name

+ + {{ route('os.index') }} + Go back + + +
+ @csrf +
+
+
+
OS
+ + @error('os') {{ $message }} + @enderror +
+
+
+
+
+ Create Operating system +
+
+
+
+
+
diff --git a/resources/views/os/index.blade.php b/resources/views/os/index.blade.php new file mode 100644 index 0000000..eea374d --- /dev/null +++ b/resources/views/os/index.blade.php @@ -0,0 +1,72 @@ +@section('title') {{'Operating systems'}} @endsection +@section('css_links') + +@endsection +@section('style') + +@endsection + + + {{ __('Operating systems') }} + +
+ + + Add an OS + + + + + + + + + + @if(!empty($os)) + @foreach($os as $o) + + + + + @endforeach + @else + + + + @endif + +
Operating systemActions
{{ $o->name }} +
+ +
+
No Operating systems found.
+
+ @if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1) +

+ Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }} + ) +

+ @endif +
+ + + + os + +