@extends('layout.admin') @section('styles') @endsection @section('content')
@if(session('success')) @endif @if(session('error')) @endif

Country / List

@foreach($countries as $country) @if(isset($country->image_url)) @else @endif @endforeach
ID Title Continents Page Title Page Url Browser Title Image Status Action
{{$country->id}} {{$country->title}} {{$country->continent_title}} {{$country->page_title}} {{getFrontendUrl().\Illuminate\Support\Str::slug($country->continent_title).'/'.$country->page_url}} {{$country->browser_title}}country Image @if($country->status == 1) Activated @else Deactivated @endif Edit
@endsection @section('script') @endsection