@extends('layouts.admin-layout')
@section('title', 'All Blogs')
@section('content')
Blog Section
| S.N. |
Heading |
Image |
Action |
@foreach ($get_blogs as $blog)
| {{ $loop->iteration }} |
{{ $blog->heading ?: '' }} |
|
|
@endforeach
@endsection
@section('script')
@endsection