Advertisement
ofac

laravel - code

May 24th, 2022
776
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. @extends('layouts.app')
  2.  
  3. @section('content')
  4. <main class="sm:container sm:mx-auto sm:mt-10">
  5.     <div class="w-full sm:px-6">
  6.  
  7.         @if (session('status'))
  8.             <div class="text-sm border border-t-8 rounded text-green-700 border-green-600 bg-green-100 px-3 py-4 mb-4" role="alert">
  9.                 {{ session('status') }}
  10.             </div>
  11.         @endif
  12.  
  13.         <section class="flex flex-col break-words bg-white sm:border-1 sm:rounded-md sm:shadow-sm sm:shadow-lg">
  14.  
  15.             <header class="font-semibold bg-gray-200 text-gray-700 py-5 px-6 sm:py-6 sm:px-8 sm:rounded-t-md">
  16.                 Dashboard
  17.             </header>
  18.  
  19.             <div class="w-full p-6">
  20.                 <p class="text-gray-700">
  21.                     You are logged in!
  22.                 </p>
  23.             </div>
  24.         </section>
  25.     </div>
  26. </main>
  27. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement