@extends('layouts.admin.master')
@section('title', 'Area')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('content')
@if(count($errors) > 0)
Error!!
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if($message = Session::get('success'))
@endif
# |
Code |
Name |
Action |
@forelse ($areas as $area)
{{$loop->iteration}} |
{{ $area->code }} |
{{ $area->name }} |
|
@empty
@endforelse
@endsection