@extends('admin.layouts.master') @section('title', 'List all Recordings - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('List all Recordings ') }} @endslot @slot('menu1') {{ __('Mettings') }} @endslot @slot('menu2') {{ __('Big Blue Mettings') }} @endslot @slot('menu3') {{ __('List all Recordings ') }} @endslot @endcomponent
{{ __('List all Recordings ')}}
@if(isset($all_recordings['recording'])) @foreach($all_recordings['recording'] as $meeting) @endforeach @endif
# {{__('Meeting ID')}} {{__('Meeting Name')}} {{__('Get Recording')}}
1 {{ $meeting->meetingID }} {{ $meeting->name }} {{__('Play Recording')}}
@endsection