@extends('layouts.app') @section('pagetitle') @stop @section('title')

ข้อมูลสาขา จัดการข้อมูลสาขา

@stop @section('content')
@if(Session::has('success_message'))
{!! session('success_message') !!}
@endif
เพิ่มสาขาใหม่
@if(count($branches) == 0)

ไม่พบข้อมูลสาขา

@else
@foreach($branches as $branch) @endforeach
ลำดับที่ ชื่อสาขา ที่อยู่ เลขประจำตัวผู้เสียภาษี เบอร์โทร จัดการ
{{++$r}} {{ $branch->name }} {{ $branch->address }} {{ $branch->taxid }} {{ $branch->tel }}
{{ csrf_field() }}
{!! $branches->render() !!} @endif
@endsection