if statement in laravel blade
@if($order->status == 'NEEDS REVISION')
<td>{{$order->status}}</td>
@else
<td id="revision-status">{{$order->status}}</td>
@endif
if statement in laravel blade
@if($order->status == 'NEEDS REVISION')
<td>{{$order->status}}</td>
@else
<td id="revision-status">{{$order->status}}</td>
@endif
if else statement in laravel blade
@if ($dummy == 1) we have 1 record@elseif ($dummy ==10) we have 10 record@else No record found.@endif
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
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