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

Event Post

@foreach($post as $key => $post_val) @endforeach
Id Venue Name Venue Address Budget Events Date Start Time End Time Music Genres Status Action
{{$post_val->id}} {{$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('script') @endsection