@extends('layouts.admin') @section('content')
@if ($message = Session::get('success'))

{{ $message }}

@endif
@lang('homepage.blogs')
@lang('admin_blog.new')
@foreach ($blogs as $blog) @csrf @method('PATCH') @endforeach
@lang('admin_blog.id') @lang('admin_blog.image') @lang('admin_blog.file') @lang('admin_blog.is_active') @lang('admin_blog.category') @lang('admin_blog.title') @lang('admin_blog.description') #
{{ $blog->id }} @if ($blog->image) @else Görsel Yok @endif @if ($blog->file) Dosyayı Gör @else Dosya Yok @endif {!! html_entity_decode(activity($blog))!!}
{{--Show--}} @lang('admin_blog.edit') @csrf @method('DELETE')
{!! $blogs->links() !!}
@endsection