@extends('layouts.admin_layout') @section('Title') پنل مدیریت | مقالات @endsection @section('custom-js') @endsection @section('content')
@if(!empty($blog->all()))
@php $row = (($blog->currentPage() - 1) * $blog->perPage() ) + 1; @endphp @foreach($blog as $post) @php $row++; @endphp @endforeach
# عنوان مقاله نامک مقاله دسته بندی ها عملیات
{{$row}}

{{$post['title']}}

{{$post['nickname']}}

@foreach($post->categories as $category) @endforeach {{$category['title']}}
{{$blog->links()}}
@else

موردی یافت نشد.

@endif
@endsection