@extends('admin.layouts.master')
@section('content')
| SN |
Gallery type |
Image |
Status |
Operation |
@php
$i=1;
@endphp
@foreach(App\Models\Media::all() as $media)
| {{ $i++ }} |
{{ $media->gallery_type }} |
@if($media->image==null)
no image
@else
@endif |
|
@endforeach
@endsection