@extends('backend.layout') @section('content')
{{ __('Edit Blog') }}
{{ __('Back') }}
    @csrf

    image
    {{ __('Choose Image') }}

    {{ __('The higher the serial number is, the later the blog will be shown.') }}

    @foreach ($languages as $language) @php $blogData = $language ->blogInformation() ->where('blog_id', $blog->id) ->first(); @endphp
    @php $categories = DB::table('blog_categories') ->where('language_id', $language->id) ->where('status', 1) ->orderByDesc('id') ->get(); @endphp
    @endforeach
    @endsection @section('script') @php $languages = App\Models\Language::get(); @endphp @endsection