how send data between child and master blade ?
*master.blade.php*
@if($sidebar == 'true')
<div>...</div>
@endif
*index.blade.php*
@extends('master')
@section('sidebar','true')
please help me. do not use Route and controller and ...
how send data between child and master blade ?
*master.blade.php*
@if($sidebar == 'true')
<div>...</div>
@endif
*index.blade.php*
@extends('master')
@section('sidebar','true')
please help me. do not use Route and controller and ...