comment php laravel template blade

Solutions on MaxInterview for comment php laravel template blade by the best coders in the world

showing results for - "comment php laravel template blade"
Paola
01 Nov 2017
1<!-- Stored in resources/views/child.blade.php -->
2
3@extends('layouts.app')
4
5@section('title', 'Page Title')
6
7@section('sidebar')
8    @parent
9
10    <p>This is appended to the master sidebar.</p>
11@endsection
12
13@section('content')
14    <p>This is my body content.</p>
15@endsection
Thiago
24 May 2017
1                         <select>
2                             @for($i = 0; $i < 24; $i++)
3                                @if($i < 10)
4                                    <option
5                                        value="{{'0'.$i.':00'}}" {{'0'.$i.':00' === $request['order_time-1']?'selected':''}}>
6                                        {{'0'.$i.':00'}}
7                                    </option>
8                                @else
9                                    <option
10                                        value="{{$i.':00'}}" {{$i.':00' === $request['order_time-1']?'selected':''}}>
11                                        {{$i.':00'}}
12                                    </option>
13                                @endif
14                            @endfor
15                         </select>