@extends('Admin.Layout.main_layout')
@section('main_container')
| id |
Blog Title |
Blog Slug |
Actions |
@if(!$blog_arr->isEmpty())
@foreach($blog_arr as $key => $data)
| {{ ($key+1) }} |
{{ $data->title }} |
{{ $data->blog_slug }} |
|
@endforeach
@else
No Blogs Available
@endif
@endsection