PHP Classes

File: resources/views/layouts/guest.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Devs Hunt   resources/views/layouts/guest.blade.php   Download  
File: resources/views/layouts/guest.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Devs Hunt
Manage courses and student enrolment
Author: By
Last change:
Date: 1 month ago
Size: 405 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        @include('layouts.meta')
        @include('layouts.styles')
        @include('layouts.scripts')
    </head>
    <body>
        @include('layouts.navbar')

        <div class="font-sans text-gray-900 antialiased">
            {{ $slot }}
        </div>

        @include('layouts.footer')
    </body>
</html>