@extends('layouts.vertical', ['title' => 'Areas']) @section('content')
| # | Name | Description | City | State | Country | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $area->id }} | {{ $area->name }} | {{ $area->description ? \Illuminate\Support\Str::limit($area->description, 50) : '-' }} | {{ $area->city->name }} | {{ $area->city->state->name }} | {{ $area->city->state->country->name }} | @if($area->is_active == '1') Active @else Inactive @endif | |
|
No areas found Add Your First Area |
|||||||