Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $filename = public_path().'/file/external/header.txt';
  2. $handle = fopen($filename, "r");
  3. $header = fread($handle, filesize($filename));
  4. fclose($handle);
  5.  
  6. <div class="form-group">
  7. <label class="col-sm-12 control-label">Description</label>
  8. <div class="col-sm-12">
  9. <textarea name="description" class="form-control" rows="5" placeholder="Desciption">
  10. {{$description}}
  11. </textarea>
  12. </div>
  13. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement