@extends('layouts.admin-layout')
@section('title', 'All Blog ')
@section('content')
Blog Section
| S.N. |
Heading |
Image |
Status |
Action |
@foreach($get_blog as $blog)
| {{ $loop->iteration }} |
{{$blog->title ? : ''}} |
|
{{$blog->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection