@extends('admin.layouts.master') @section('title', 'Meeting Record - Admin') @section('maincontent') @component('components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Meeting Record') }} @endslot @slot('menu1') {{ __('Meetings') }} @endslot @slot('menu2') {{ __('Meeting Record') }} @endslot @slot('button')
@can('meetings.meeting-recordings.create') {{ __("Add Meetingrecord")}} @endcan
@endslot @endcomponent
{{ __('Meeting Record')}}
@foreach($recordings as $recording) @endforeach
# {{ __('Meeting') }} {{ __('Name') }} {{ __('Edit') }} {{ __('Meeting') }} {{ __('URL') }}
1 {{ $recording->title }} {{ __('View') }} {{ __('Recording') }}
@endsection