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