@extends('layouts.admin_layout')
@section('content')
@section('title', 'Blog List')
S.No |
Title |
Status |
Action |
@forelse($blogs as $key=>$row)
{{$key+1+($blogs->currentPage()-1) * ($blogs->perPage())}} |
{{$row->title ?? ''}} |
}}) |
@if($row->status == 1) @else @endif |
Edit
Delete
|
@empty
Data not found |
@endif
{{$blogs->links()}}
@include('includes.admin.footer')
@include('includes/admin/delete-model')
@stop