@extends('layouts.admin.master') @section('title') {{ __('Blogs') }} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')

{{ __('Blogs') }}

@endslot @endcomponent
{{-- --}} {{-- --}} @foreach ($blogs as $blog) {{-- --}} {{-- --}} @endforeach
{{ __('Title') }} {{ __('Image') }}{{ __('Country') }}{{ __('City') }}{{ __('Status') }} {{ __('Action') }}
{{ $blog->title }} {{ $blog->country->name }}{{ $blog->city->name }} {{ $blog->status == 'active' ? 'Activated' : 'Not Activated' }}
@push('scripts') @include('dashbord.include.custom-datatable') @endpush @endsection