@extends('layouts.app') @section('page-title', __('Regions')) @section('page-heading', __('Manage Regions')) @section('content')
Add New Region
@csrf
@push('scripts') @endpush
Regions List
@foreach($regions as $region) @endforeach
Name Counties Actions
{{ $region->name }} @foreach($region->counties as $county) {{ $county->name }} @endforeach
@csrf @method('DELETE')
Edit
@endsection @section('scripts-head') @stack('scripts') @endsection