@extends('backend.layouts.master') @section('title') Galleries @endsection @section('main-content') @include('backend.layouts.notification')
Galleries
@if(count($galleries)>0) @foreach($galleries as $data) @endforeach
ID Title Slug Photo Status Action
{{$data->id}} {{$data->title}} {{$data->slug}} @if($data->photo) {{ Storage::url($data->photo) }} @else avatar.png @endif @if($data->status=='active') {{$data->status}} @else {{$data->status}} @endif
@csrf @method('delete')
@else
No galleries found!!! Please add gallery
@endif
@endsection