startcontent.blade.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. @extends('layouts.welcome')
  2. @section('title', 'Tabels')
  3. @section('greeting')
  4. {{trans('tablename.greeting')}}
  5. @endsection
  6. @section('links_to_tabels')
  7. <a href="/clients" class="links"> {{trans('tablename.clients')}} </a>
  8. <a href="/employees" class="links"> {{trans('tablename.employees')}} </a>
  9. <a href="/films" class="links"> {{trans('tablename.films')}} </a>
  10. <a href="/orders" class="links"> {{trans('tablename.orders')}} </a>
  11. <a href="/workshifts" class="links"> {{trans('tablename.workshifts')}} </a>
  12. <a href="/ordersdetails" class="links"> {{trans('tablename.ordersdetails')}} </a>
  13. <a href="/schedule" class="links"> {{trans('tablename.employeetimework')}} </a>
  14. @endsection
  15. @section('hat')
  16. <div class="relative flex items-top justify-center sm:items-center sm:pt-0">
  17. @if (Route::has('login'))
  18. <div class="hidden fixed top-0 right-0 px-6 py-4 sm:block">
  19. @auth
  20. <a href="{{ url('/home') }}" class="text-sm text-gray-700 underline">Home</a>
  21. @else
  22. <a href="{{ route('login') }}" class="text-sm text-gray-700 underline">Login</a>
  23. @if (Route::has('register'))
  24. <a href="{{ route('register') }}" class="ml-4 text-sm text-gray-700 underline">Register</a>
  25. @endif
  26. @endauth
  27. </div>
  28. @endif
  29. </div>
  30. @endsection