@extends('admins.dashboard') @section('content')
All Conferences
@foreach ($confs as $conf) @endforeach
# Name URL Submission Event
Start End Start End
{{ $conf->id }} {{$conf->name}} {{$conf->url}} {{ null !== $conf->start_submit ? date('d F Y', strtotime($conf->start_submit)) : null }} {{ null !== $conf->end_submit ? date('d F Y', strtotime($conf->end_submit)) : null }} {{ null !== $conf->start_date ? date('d F Y', strtotime($conf->start_date)) : null }} {{ null !== $conf->start_submit ? date('d F Y', strtotime($conf->start_submit)) : null }}
@endsection