@extends('backend.layouts.master') @section('title') Programs @endsection @section('main-content') @include('backend.layouts.notification')
Programs
@if(count($programs)>0) @foreach($programs as $program) @endforeach
ID Title Slug Status Action
{{$program->id}} {{$program->title}} {{$program->slug}} @if($program->photo) {{ Storage::url($program->photo) }} @else avatar.png @endif @if($program->status=='active') {{$program->status}} @else {{$program->status}} @endif
@csrf @method('delete')
{{$programs->links()}} @else
No programs found!!! Please create program
@endif
@endsection @push('styles') @endpush @push('scripts') @endpush