@extends('layouts.default_module')
@section('module_name')
Video
@stop
@section('add_btn')
{!! Form::open(['method' => 'get', 'route' => ['video.create'], 'files' => true]) !!}
{!! Form::submit('Add', ['class' => 'btn btn-success pull-right']) !!}
{!! Form::close() !!}
@stop
@section('table-properties')
width="400px" style="table-layout:fixed;"
@endsection
@section('table')
{{-- {!! Form::open(['method' => 'post', 'route' => ['doctor.search'], 'files'=>true]) !!}
@include('admin.doctor.partial.searchfilters')
{!!Form::close() !!} --}}
{{-- @stop --}}
| Name |
Video |
Edit |
Delete |
@foreach ($video as $v)
Notice: Undefined variable: v in /home/demohatinco/public_html/fv_lms_pro_backend/resources/views/admin/video/index.blade.php on line 48
Notice: Trying to get property 'type' of non-object in /home/demohatinco/public_html/fv_lms_pro_backend/resources/views/admin/video/index.blade.php on line 48
Notice: Undefined variable: v in /home/demohatinco/public_html/fv_lms_pro_backend/resources/views/admin/video/index.blade.php on line 51
Notice: Trying to get property 'name' of non-object in /home/demohatinco/public_html/fv_lms_pro_backend/resources/views/admin/video/index.blade.php on line 51
{!! ucwords($audio_video) !!} |
|
{!! link_to_action('Admin\VideoController@edit', 'Edit', [$v->id], ['class' => 'badge bg-info']) !!}
|
{!! Form::open(['method' => 'POST', 'route' => ['video.delete', $v->id]]) !!}
{!! $v->deleted_at ? 'Activate' : 'Delete' !!}
{!! Form::close() !!}
|
@endforeach
@section('pagination')
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!}
{!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!}
{!! Form::close() !!}
@endsection
@stop