@extends('residential.templates.uadmin')
@section('content')
@if (session('status'))
{{ session('status') }}
@endif
@if (count($errors) > 0)
Whoops! There were some problems with your input.
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
ID |
Name |
Type |
Created |
Updated |
Action |
@foreach ($sections as $section)
@if($count % 2 == 1)
@else
@endif
{{ $section->id }} |
{{ $section->name }} |
{{ $section->type }} |
{{ $section->created_at }} |
{{ $section->updated_at }} |
   
|
@endforeach
@endsection
@section('extras')
@endsection
@section('bottom')
@endsection