PHP Classes

File: resources/views/post/layout.blade.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Laravel 9 CRUD Example   resources/views/post/layout.blade.php   Download  
File: resources/views/post/layout.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel 9 CRUD Example
Example of CRUD application using Laravel 9
Author: By
Last change:
Date: 1 year ago
Size: 285 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html>
<head>
    <title>Laravel 9 CRUD Opration - Nicesnippest.com</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>

<div class="container">
    @yield('content')
</div>

</body>
</html>