@extends('layouts.dashboard') @section('title') Manage Therapists @endsection @section('content')
@csrf
@if ($errors->any())
@endif @if (session('status')) @endif {{ $data->links() }}
@forelse ($data as $one) @empty @endforelse
id title description price picture status actions created at updated at
{{$one->id}} {{$one->title}} {{Str::limit($one->description,25)}} {{$one->price}} EGP active == '1' ? 'checked="checked"' : '' }} disabled /> {{ Form::open(array('method' => 'Delete', 'route' => array('therapists_destroy',$one->id), 'class' => 'delete-form', 'onsubmit' => 'return confirm(\'Are you sure make delete operation that will be delete related reservation ?\')')) }} {{ Form::close() }} {{$one->created_at}} {{$one->updated_at}}
id title description price picture status actions created at updated at
{{ $data->links() }} @endsection