Search
 
SCRIPT & CODE EXAMPLE
 

PHP

layout.blade.php in laravel

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>@yield('title')</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
        integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
    </script>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>

</head>

<body>
    @yield('content')
</body>
</html>
Comment

layout.blade.php in laravel

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>@yield('title')</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
        integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
    </script>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>

</head>

<body>
    @yield('content')
</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Php :: how unique field in table in phpmyadmin 
Php :: login form in php 
Php :: insert date of birth on the database using php 
Php :: sum of multidimensional array in php 
Php :: how to pass bearer token in swagger in laravel 
Php :: Laravel adding Foreign Key Constraints 
Php :: clone array php 
Php :: uuidv4 php 
Php :: laravel eloquent orderby 
Php :: resource controller artisan command 
Php :: array filter multiple conditions php 
Php :: return view with variable laravel 
Php :: php intval 
Php :: php serialize() 
Php :: count an array in php 
Php :: php mongodb 
Php :: http_response_code 
Php :: how to get shop page url in wordpress 
Php :: wordpress get id from page title 
Php :: mac brew install php redis 
Php :: call to a member function setcookie() on null laravel middleware 
Php :: file could not be downloaded: Unable to find the wrap per "https" - did you forget to enable it when you configured PHP? failed to open stream: No such file or directory 
Php :: get post info in php 
Php :: laravel route multiple methods 
Php :: custom rule laravel validation 
Php :: guzzle get request 
Php :: Delete quotes in php 
Php :: how to fetch data from url in php properly 
Php :: How to create and access angular HTTP params in PHP 
Php :: withdefault laravel 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =