@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Gigs')}} @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('All Gigs')}}

@php $b=0; @endphp @foreach($all_gigs as $key => $job)
@foreach($job as $data) @endforeach
{{__('ID')}} {{__('Title')}} {{__('Category')}} {{__('Status')}} {{__('Action')}}
{{$data->id}} {{$data->title}} {{get_gigs_category_by_id($data->category_id)}} @if($data->status == 'publish') {{__('Publish')}} @else {{__('Draft')}} @endif
@csrf
@php $b++; @endphp @endforeach
@endsection @section('script') @endsection