@extends('admin.layouts.master') @section('content')

Gig Posts

@foreach($post as $key => $post_val) @endforeach
Id Event Manager Name Venue Name Venue Address Budget Event Date Start Time End Time Music Genres Status Action
{{$post_val->id}} @if(!empty($post_val->user)){{$post_val->user->name}}@endif {{$post_val->venue_name}} {{$post_val->venue_address}} {{$post_val->budget}}$ {{$post_val->event_date}} {{$post_val->start}} {{$post_val->end}} @if(!empty($post_val->music)){{$post_val->music[0]->name}}@endif {{$post_val->status}} {{-- status=="pending") href="{{route('eventManagement.post.edit',['id'=>$post_val->id])}}" @else href="javascript:void(0)" @endif class="btn btn-md btn-icon btn-success edit"> --}}
@endsection @section('scripts') @endsection