add blade in blade laravel
@include('view.name')
add blade in blade laravel
@include('view.name')
using get in laravel blade
{{ request()->has('faq') ? request()->get('faq') : '' }}
laravel blade section keep template
<!-- Stored in resources/views/child.blade.php -->
@extends('layouts.app')
@section('title', 'Page Title')
@section('sidebar')
@parent
<p>This is appended to the master sidebar.</p>
@endsection
@section('content')
<p>This is my body content.</p>
@endsection
include blade file in laravel
include with data passing
@include('view.name', ['status' => 'complete'])
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us