@extends('admin.layouts.master')
@section('title', 'Service Section')
@section('content')
{{ __('#') }} |
{{ __('Title') }} |
{{ __('Type') }} |
{{ __('Order No') }} |
{{ __('Action') }} |
@foreach ($serviceSections as $id => $section)
{{ ++$id }}
|
{{ $section->title }}
|
@if ($section->type == 'rtl')
Right To Left
@elseif($section->type == 'ltr')
Left To Right
@endif
|
{{ $section->order_no }}
|
|
@endforeach
@endsection