@extends('layouts.admin') @section('page-title') {{__('Manage Branch')}} @endsection @section('breadcrumb') @endsection @section('action-btn')
@can('create branch') @endcan
@endsection @section('content')
@include('layouts.hrm_setup')
@foreach ($branches as $branch) @endforeach
{{__('Branch')}} {{__('Action')}}
{{ $branch->name }} @can('edit branch')
@endcan @can('delete branch')
{!! Form::open(['method' => 'DELETE', 'route' => ['branch.destroy', $branch->id],'id'=>'delete-form-'.$branch->id]) !!} {!! Form::close() !!}
@endcan
@endsection