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

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

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

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